Enum dusk_bytes::Error [−][src]
Dusk Bytes operation error variants
Variants
Generic error that can be returned in a [Deserializable::from_bytes]
implementation
Automatically returned from the default implementation of
[DeserializableSlice::from_slice] if the slice given is smaller than
the mandatory size for the struct.
Automatically returned from the default implementation of
[ParseHexStr::from_hex_str] if an invalid character is found in the
string slice.
Trait Implementations
impl BadLength for Error[src]
fn bad_length(found: usize, expected: usize) -> Self[src]
impl Clone for Error[src]
fn clone(&self) -> Error[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for Error[src]
impl Debug for Error[src]
impl Eq for Error[src]
impl Hash for Error[src]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl InvalidChar for Error[src]
fn invalid_char(ch: char, index: usize) -> Self[src]
impl Ord for Error[src]
fn cmp(&self, other: &Error) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<Error> for Error[src]
impl PartialOrd<Error> for Error[src]
fn partial_cmp(&self, other: &Error) -> Option<Ordering>[src]
fn lt(&self, other: &Error) -> bool[src]
fn le(&self, other: &Error) -> bool[src]
fn gt(&self, other: &Error) -> bool[src]
fn ge(&self, other: &Error) -> bool[src]
impl StructuralEq for Error[src]
impl StructuralPartialEq for Error[src]
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,