pub struct CompilationErrorDetail {
pub file_path_in_log: String,
pub line: Option<u32>,
pub message: String,
}Fields§
§file_path_in_log: String§line: Option<u32>§message: StringTrait Implementations§
Source§impl Clone for CompilationErrorDetail
impl Clone for CompilationErrorDetail
Source§fn clone(&self) -> CompilationErrorDetail
fn clone(&self) -> CompilationErrorDetail
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 CompilationErrorDetail
impl RefUnwindSafe for CompilationErrorDetail
impl Send for CompilationErrorDetail
impl Sync for CompilationErrorDetail
impl Unpin for CompilationErrorDetail
impl UnsafeUnpin for CompilationErrorDetail
impl UnwindSafe for CompilationErrorDetail
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