Struct rustc_errors::CodeSuggestion
[−]
[src]
pub struct CodeSuggestion {
pub substitutions: Vec<Substitution>,
pub msg: String,
pub 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?
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?
Methods
impl CodeSuggestion[src]
pub fn splice_lines(
&self,
cm: &CodeMapper
) -> Vec<(String, Vec<SubstitutionPart>)>[src]
&self,
cm: &CodeMapper
) -> 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]
fn clone(&self) -> CodeSuggestion[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for CodeSuggestion[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for CodeSuggestion[src]
fn eq(&self, __arg_0: &CodeSuggestion) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CodeSuggestion) -> bool[src]
This method tests for !=.
impl Hash for CodeSuggestion[src]
fn hash<__H: Hasher>(&self, __arg_0: &mut __H)[src]
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]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl Encodable for CodeSuggestion[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>[src]
🔬 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?