pub enum BlockParseError {
TooLarge {
max_size: u32,
block_size: u32,
},
ReservedBlockType,
}Variants§
Trait Implementations§
Source§impl Clone for BlockParseError
impl Clone for BlockParseError
Source§fn clone(&self) -> BlockParseError
fn clone(&self) -> BlockParseError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for BlockParseError
impl Debug for BlockParseError
Source§impl Display for BlockParseError
impl Display for BlockParseError
Source§impl Error for BlockParseError
impl Error for BlockParseError
1.30.0 · 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()
impl Copy for BlockParseError
Auto Trait Implementations§
impl Freeze for BlockParseError
impl RefUnwindSafe for BlockParseError
impl Send for BlockParseError
impl Sync for BlockParseError
impl Unpin for BlockParseError
impl UnwindSafe for BlockParseError
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