pub enum PartialStreamError {
StartIndex(u8),
Io(Error),
}Variants§
Trait Implementations§
Source§impl Debug for PartialStreamError
impl Debug for PartialStreamError
Source§impl Display for PartialStreamError
impl Display for PartialStreamError
Source§impl Error for PartialStreamError
impl Error for PartialStreamError
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 PartialStreamError
impl From<Error> for PartialStreamError
Source§impl From<PartialStreamError> for StoreError
impl From<PartialStreamError> for StoreError
Source§fn from(source: PartialStreamError) -> Self
fn from(source: PartialStreamError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for PartialStreamError
impl !RefUnwindSafe for PartialStreamError
impl Send for PartialStreamError
impl Sync for PartialStreamError
impl Unpin for PartialStreamError
impl !UnwindSafe for PartialStreamError
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