Struct syntax::diagnostics::plugin::CodeSuggestion [−][src]
pub struct CodeSuggestion { pub substitutions: Vec<Substitution>, pub msg: String, pub show_code_when_inline: bool, pub applicability: Applicability, }
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Fields
substitutions: Vec<Substitution>
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Each substitute can have multiple variants due to multiple applicable suggestions
foo.bar
might be replaced with a.b
or x.y
by replacing
foo
and bar
on their own:
vec![ Substitution { parts: vec![(0..3, "a"), (4..7, "b")] }, Substitution { parts: vec![(0..3, "x"), (4..7, "y")] }, ]
or by replacing the entire span:
vec![ Substitution { parts: vec![(0..7, "a.b")] }, Substitution { parts: vec![(0..7, "x.y")] }, ]
msg: String
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
show_code_when_inline: bool
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
applicability: Applicability
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Whether or not the suggestion is approximate
Sometimes we may show suggestions with placeholders, which are useful for users but not useful for tools like rustfix
Methods
impl CodeSuggestion
[src]
impl CodeSuggestion
pub fn splice_lines(
&self,
cm: &(CodeMapper + 'static + Send + Sync)
) -> Vec<(String, Vec<SubstitutionPart>)>
[src]
pub fn splice_lines(
&self,
cm: &(CodeMapper + 'static + Send + Sync)
) -> Vec<(String, Vec<SubstitutionPart>)>
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
Returns the assembled code suggestions and whether they should be shown with an underline.
Trait Implementations
impl Clone for CodeSuggestion
[src]
impl Clone for CodeSuggestion
fn clone(&self) -> CodeSuggestion
[src]
fn clone(&self) -> CodeSuggestion
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
impl Debug for CodeSuggestion
[src]
impl Debug for CodeSuggestion
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Hash for CodeSuggestion
[src]
impl Hash for CodeSuggestion
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher,
Feeds this value into the given [Hasher
]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Encodable for CodeSuggestion
[src]
impl Encodable for CodeSuggestion
fn encode<__S>(&self, s: &mut __S) -> Result<(), <__S as Encoder>::Error> where
__S: Encoder,
[src]
fn encode<__S>(&self, s: &mut __S) -> Result<(), <__S as Encoder>::Error> where
__S: Encoder,
🔬 This is a nightly-only experimental API. (rustc_private
)
this crate is being loaded from the sysroot, an unstable location; did you mean to load this crate from crates.io via Cargo.toml
instead?
impl PartialEq<CodeSuggestion> for CodeSuggestion
[src]
impl PartialEq<CodeSuggestion> for CodeSuggestion
fn eq(&self, other: &CodeSuggestion) -> bool
[src]
fn eq(&self, other: &CodeSuggestion) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &CodeSuggestion) -> bool
[src]
fn ne(&self, other: &CodeSuggestion) -> bool
This method tests for !=
.
impl Decodable for CodeSuggestion
[src]
impl Decodable for CodeSuggestion
Auto Trait Implementations
impl !Send for CodeSuggestion
impl !Send for CodeSuggestion
impl !Sync for CodeSuggestion
impl !Sync for CodeSuggestion