pub struct EventLogNotFoundError {
pub log_name: Cow<'static, str>,
}Expand description
Event log not found error.
Fields§
§log_name: Cow<'static, str>The name of the log that was not found.
Implementations§
Trait Implementations§
Source§impl Debug for EventLogNotFoundError
impl Debug for EventLogNotFoundError
Source§impl Display for EventLogNotFoundError
impl Display for EventLogNotFoundError
Source§impl Error for EventLogNotFoundError
impl Error for EventLogNotFoundError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0:
use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for EventLogNotFoundError
impl RefUnwindSafe for EventLogNotFoundError
impl Send for EventLogNotFoundError
impl Sync for EventLogNotFoundError
impl Unpin for EventLogNotFoundError
impl UnsafeUnpin for EventLogNotFoundError
impl UnwindSafe for EventLogNotFoundError
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