pub enum OpEncodingError {
Encoding(Error),
Git(Error),
}
Expand description
Error decoding an operation from an entry.
Variants§
Trait Implementations§
Source§impl Debug for OpEncodingError
impl Debug for OpEncodingError
Source§impl Display for OpEncodingError
impl Display for OpEncodingError
Source§impl Error for OpEncodingError
impl Error for OpEncodingError
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<Error> for OpEncodingError
impl From<Error> for OpEncodingError
Source§impl From<Error> for OpEncodingError
impl From<Error> for OpEncodingError
Source§impl From<OpEncodingError> for Error
impl From<OpEncodingError> for Error
Source§fn from(source: OpEncodingError) -> Self
fn from(source: OpEncodingError) -> Self
Converts to this type from the input type.
Source§impl From<OpEncodingError> for Error
impl From<OpEncodingError> for Error
Source§fn from(source: OpEncodingError) -> Self
fn from(source: OpEncodingError) -> Self
Converts to this type from the input type.
Source§impl From<OpEncodingError> for Error
impl From<OpEncodingError> for Error
Source§fn from(source: OpEncodingError) -> Self
fn from(source: OpEncodingError) -> Self
Converts to this type from the input type.
Source§impl From<OpEncodingError> for Error
impl From<OpEncodingError> for Error
Source§fn from(source: OpEncodingError) -> Self
fn from(source: OpEncodingError) -> Self
Converts to this type from the input type.
Source§impl From<OpEncodingError> for Error
impl From<OpEncodingError> for Error
Source§fn from(source: OpEncodingError) -> Self
fn from(source: OpEncodingError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OpEncodingError
impl !RefUnwindSafe for OpEncodingError
impl Send for OpEncodingError
impl Sync for OpEncodingError
impl Unpin for OpEncodingError
impl !UnwindSafe for OpEncodingError
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