pub enum BlockError {
ReservedSzx,
NumTooLarge,
EncodingTooLong,
BadEncodingLength,
}Expand description
Block-Codec-Fehler.
Variants§
ReservedSzx
SZX = 7 ist reserved.
NumTooLarge
NUM > 2^20 - 1.
EncodingTooLong
Encoded value uebersteigt 3 Bytes.
BadEncodingLength
Decode: 0 oder mehr als 3 Bytes.
Trait Implementations§
Source§impl Clone for BlockError
impl Clone for BlockError
Source§fn clone(&self) -> BlockError
fn clone(&self) -> BlockError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BlockError
impl Debug for BlockError
Source§impl PartialEq for BlockError
impl PartialEq for BlockError
Source§fn eq(&self, other: &BlockError) -> bool
fn eq(&self, other: &BlockError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for BlockError
impl Eq for BlockError
impl StructuralPartialEq for BlockError
Auto Trait Implementations§
impl Freeze for BlockError
impl RefUnwindSafe for BlockError
impl Send for BlockError
impl Sync for BlockError
impl Unpin for BlockError
impl UnsafeUnpin for BlockError
impl UnwindSafe for BlockError
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