pub enum TreeDecodeError {
Decode(Error),
Invalid(TreeError),
}Variants§
Trait Implementations§
Source§impl Debug for TreeDecodeError
impl Debug for TreeDecodeError
Source§impl From<Error> for TreeDecodeError
impl From<Error> for TreeDecodeError
Source§fn from(error: Error) -> TreeDecodeError
fn from(error: Error) -> TreeDecodeError
Converts to this type from the input type.
Source§impl From<TreeError> for TreeDecodeError
impl From<TreeError> for TreeDecodeError
Source§fn from(error: TreeError) -> TreeDecodeError
fn from(error: TreeError) -> TreeDecodeError
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for TreeDecodeError
impl !UnwindSafe for TreeDecodeError
impl Freeze for TreeDecodeError
impl Send for TreeDecodeError
impl Sync for TreeDecodeError
impl Unpin for TreeDecodeError
impl UnsafeUnpin for TreeDecodeError
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