pub struct Suggestion {
pub message: String,
pub replacement: Option<String>,
pub span: Option<SourceSpan>,
}Expand description
Suggested source edit for a diagnostic.
§Examples
use mos_core::Suggestion;
let suggestion = Suggestion {
message: "insert closing marker".to_owned(),
replacement: Some("]".to_owned()),
span: None,
};
assert_eq!(suggestion.replacement.as_deref(), Some("]"));Fields§
§message: String§replacement: Option<String>§span: Option<SourceSpan>Trait Implementations§
Source§impl Clone for Suggestion
impl Clone for Suggestion
Source§fn clone(&self) -> Suggestion
fn clone(&self) -> Suggestion
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for Suggestion
impl RefUnwindSafe for Suggestion
impl Send for Suggestion
impl Sync for Suggestion
impl Unpin for Suggestion
impl UnsafeUnpin for Suggestion
impl UnwindSafe for Suggestion
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more