Enum hdk::prelude::warrant::SerializedBytesError[]

pub enum SerializedBytesError {
    Serialize(String),
    Deserialize(String),
}

Variants

Serialize(String)

somehow failed to move to bytes most likely hit a messagepack limit https://github.com/msgpack/msgpack/blob/master/spec.md#limitation

Deserialize(String)

somehow failed to restore bytes i mean, this could be anything, how do i know what’s wrong with your bytes?

Trait Implementations

impl Clone for SerializedBytesError

impl Debug for SerializedBytesError

impl<'de> Deserialize<'de> for SerializedBytesError

impl Display for SerializedBytesError

impl Eq for SerializedBytesError

impl Error for SerializedBytesError

impl From<Infallible> for SerializedBytesError

impl From<SerializedBytesError> for String

impl From<SerializedBytesError> for WasmError

impl From<SerializedBytesError> for EntryError[src]

impl Hash for SerializedBytesError

impl Ord for SerializedBytesError

impl PartialEq<SerializedBytesError> for SerializedBytesError

impl PartialOrd<SerializedBytesError> for SerializedBytesError

impl Serialize for SerializedBytesError

impl StructuralEq for SerializedBytesError

impl StructuralPartialEq for SerializedBytesError

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,