pub enum Error {
InvalidUTF8,
Reader(Error),
Writer(Error),
Open(String),
}
Expand description
A general error for dealing with serializing
Variants§
InvalidUTF8
Supplied path contains invalid UTF-8.
I plan to remove this limitation in the future.
See deserialize::Error::InvalidUTF8
Reader(Error)
An error occurred in reading data.
Writer(Error)
Error while writing data to the output writer.
Open(String)
Error when opening data to include in bundle.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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