pub struct ErrorLog {
pub line_number: usize,
pub msg: String,
}Expand description
An error log entry for non-fatal issues during schema generation.
Fields§
§line_number: usizeLine number where the error occurred
msg: StringError message
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ErrorLog
impl RefUnwindSafe for ErrorLog
impl Send for ErrorLog
impl Sync for ErrorLog
impl Unpin for ErrorLog
impl UnwindSafe for ErrorLog
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