pub enum LogValueConvertionError {
FailedToConvertToDateTimeUtc(String),
FailedToConvertToU32(String),
FailedToConvertToI32(String),
UnableToCreateTimestampFrom(i64),
IntegerConversionError(IntegerConversionError),
}
Variants§
FailedToConvertToDateTimeUtc(String)
FailedToConvertToU32(String)
FailedToConvertToI32(String)
UnableToCreateTimestampFrom(i64)
IntegerConversionError(IntegerConversionError)
Trait Implementations§
Source§impl From<IntegerConversionError> for LogValueConvertionError
impl From<IntegerConversionError> for LogValueConvertionError
Source§fn from(e: IntegerConversionError) -> Self
fn from(e: IntegerConversionError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for LogValueConvertionError
impl RefUnwindSafe for LogValueConvertionError
impl Send for LogValueConvertionError
impl Sync for LogValueConvertionError
impl Unpin for LogValueConvertionError
impl UnwindSafe for LogValueConvertionError
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