pub struct ErrorEntry {
pub severity: ErrorSeverity,
pub category: String,
pub message: String,
pub code: u32,
}Expand description
A single error entry.
Fields§
§severity: ErrorSeverity§category: String§message: String§code: u32Trait Implementations§
Source§impl Clone for ErrorEntry
impl Clone for ErrorEntry
Source§fn clone(&self) -> ErrorEntry
fn clone(&self) -> ErrorEntry
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for ErrorEntry
impl RefUnwindSafe for ErrorEntry
impl Send for ErrorEntry
impl Sync for ErrorEntry
impl Unpin for ErrorEntry
impl UnsafeUnpin for ErrorEntry
impl UnwindSafe for ErrorEntry
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