pub enum BindleParseError<Id: Copy + Eq + Debug + Display> {
WrongStructure,
InvalidId(Baid58ParseError),
MismatchedId {
actual: Id,
expected: Id,
},
Base85,
Deserialize(DeserializeError),
TooLarge,
}
Variants§
WrongStructure
the provided text doesn’t represent a recognizable ASCII-armored RGB bindle encoding.
InvalidId(Baid58ParseError)
Id header of the bindle contains unparsable information. Details: {0}
MismatchedId
the actual data doesn’t match the provided id.
Actual id: {actual}.
Expected id: {expected}.
Base85
bindle data has invalid Base85 encoding (ASCII armoring).
Deserialize(DeserializeError)
unable to decode the provided bindle data. Details: {0}
TooLarge
bindle contains more than 16MB of data.
Trait Implementations§
Source§impl<Id: Clone + Copy + Eq + Debug + Display> Clone for BindleParseError<Id>
impl<Id: Clone + Copy + Eq + Debug + Display> Clone for BindleParseError<Id>
Source§fn clone(&self) -> BindleParseError<Id>
fn clone(&self) -> BindleParseError<Id>
Returns a copy 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<Id: Copy + Eq + Debug + Display> Error for BindleParseError<Id>
impl<Id: Copy + Eq + Debug + Display> Error for BindleParseError<Id>
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()
Source§impl<Id: Copy + Eq + Debug + Display> From<BindleParseError<Id>> for String
impl<Id: Copy + Eq + Debug + Display> From<BindleParseError<Id>> for String
Source§fn from(err: BindleParseError<Id>) -> Self
fn from(err: BindleParseError<Id>) -> Self
Converts to this type from the input type.
Source§impl<Id: Copy + Eq + Debug + Display> From<DeserializeError> for BindleParseError<Id>
impl<Id: Copy + Eq + Debug + Display> From<DeserializeError> for BindleParseError<Id>
Source§fn from(v: DeserializeError) -> Self
fn from(v: DeserializeError) -> Self
Converts to this type from the input type.
impl<Id: Eq + Copy + Eq + Debug + Display> Eq for BindleParseError<Id>
impl<Id: Copy + Eq + Debug + Display> StructuralPartialEq for BindleParseError<Id>
Auto Trait Implementations§
impl<Id> Freeze for BindleParseError<Id>where
Id: Freeze,
impl<Id> !RefUnwindSafe for BindleParseError<Id>
impl<Id> Send for BindleParseError<Id>where
Id: Send,
impl<Id> Sync for BindleParseError<Id>where
Id: Sync,
impl<Id> Unpin for BindleParseError<Id>where
Id: Unpin,
impl<Id> !UnwindSafe for BindleParseError<Id>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.