pub struct MistDiagnosticMessage {
pub message: String,
pub file_path: PathBuf,
pub file_name: String,
pub line: usize,
pub column: usize,
}Fields§
§message: String§file_path: PathBuf§file_name: String§line: usize§column: usizeTrait Implementations§
Source§impl Clone for MistDiagnosticMessage
impl Clone for MistDiagnosticMessage
Source§fn clone(&self) -> MistDiagnosticMessage
fn clone(&self) -> MistDiagnosticMessage
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 MistDiagnosticMessage
impl RefUnwindSafe for MistDiagnosticMessage
impl Send for MistDiagnosticMessage
impl Sync for MistDiagnosticMessage
impl Unpin for MistDiagnosticMessage
impl UnsafeUnpin for MistDiagnosticMessage
impl UnwindSafe for MistDiagnosticMessage
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