pub enum AccessLogError {
ParseError {
msg: String,
},
}
Expand description
AccessLogError enumerates all possible errors returned by this library
Variants§
Trait Implementations§
Source§impl Debug for AccessLogError
impl Debug for AccessLogError
Source§impl Display for AccessLogError
impl Display for AccessLogError
Source§impl Error for AccessLogError
impl Error for AccessLogError
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()
Source§impl PartialEq for AccessLogError
impl PartialEq for AccessLogError
impl StructuralPartialEq for AccessLogError
Auto Trait Implementations§
impl Freeze for AccessLogError
impl RefUnwindSafe for AccessLogError
impl Send for AccessLogError
impl Sync for AccessLogError
impl Unpin for AccessLogError
impl UnwindSafe for AccessLogError
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