pub struct LintMessage {
pub level: MessageLevel,
pub path: Vec<String>,
pub message: String,
}
Fields§
§level: MessageLevel
§path: Vec<String>
§message: String
Trait Implementations§
Source§impl Clone for LintMessage
impl Clone for LintMessage
Source§fn clone(&self) -> LintMessage
fn clone(&self) -> LintMessage
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LintMessage
impl Debug for LintMessage
Source§impl PartialEq for LintMessage
impl PartialEq for LintMessage
impl StructuralPartialEq for LintMessage
Auto Trait Implementations§
impl Freeze for LintMessage
impl RefUnwindSafe for LintMessage
impl Send for LintMessage
impl Sync for LintMessage
impl Unpin for LintMessage
impl UnwindSafe for LintMessage
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