pub enum LdError {
InvariantViolation(String),
DecodeError(String),
Io(Error),
}Variants§
InvariantViolation(String)
Invariant violation at encode boundary.
DecodeError(String)
Binary format error during decode.
Io(Error)
IO error.
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for LdError
impl !UnwindSafe for LdError
impl Freeze for LdError
impl Send for LdError
impl Sync for LdError
impl Unpin for LdError
impl UnsafeUnpin for LdError
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