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 CodeSuggestionpub 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 Decodable for CodeSuggestion[src]
impl Decodable for CodeSuggestionfn decode<__D>(d: &mut __D) -> Result<CodeSuggestion, <__D as Decoder>::Error> where
__D: Decoder, [src]
fn decode<__D>(d: &mut __D) -> Result<CodeSuggestion, <__D as Decoder>::Error> where
__D: Decoder, 🔬 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 CodeSuggestionfn eq(&self, other: &CodeSuggestion) -> bool[src]
fn eq(&self, other: &CodeSuggestion) -> boolThis 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) -> boolThis method tests for !=.
impl Clone for CodeSuggestion[src]
impl Clone for CodeSuggestionfn clone(&self) -> CodeSuggestion[src]
fn clone(&self) -> CodeSuggestionReturns 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 Encodable for CodeSuggestion[src]
impl Encodable for CodeSuggestionfn 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 Hash for CodeSuggestion[src]
impl Hash for CodeSuggestionfn 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 Debug for CodeSuggestion[src]
impl Debug for CodeSuggestionAuto Trait Implementations
impl !Send for CodeSuggestion
impl !Send for CodeSuggestionimpl !Sync for CodeSuggestion
impl !Sync for CodeSuggestion