pub enum LogConfigurationError {
Auth {
message: String,
},
Unknown {
message: String,
},
}Expand description
Captures any errors Momento has detected during log configuration
Variants§
Trait Implementations§
Source§impl Debug for LogConfigurationError
impl Debug for LogConfigurationError
Source§impl Display for LogConfigurationError
impl Display for LogConfigurationError
Source§impl Error for LogConfigurationError
impl Error for LogConfigurationError
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 From<LogConfigurationError> for LogConfigurationError
impl From<LogConfigurationError> for LogConfigurationError
Source§fn from(value: LogConfigurationError) -> Self
fn from(value: LogConfigurationError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LogConfigurationError
impl RefUnwindSafe for LogConfigurationError
impl Send for LogConfigurationError
impl Sync for LogConfigurationError
impl Unpin for LogConfigurationError
impl UnwindSafe for LogConfigurationError
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