[][src]Enum holochain_serialized_bytes::SerializedBytesError

pub enum SerializedBytesError {
    ToBytes(String),
    FromBytes(String),
}

Variants

ToBytes(String)

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

FromBytes(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[src]

impl Debug for SerializedBytesError[src]

impl<'de> Deserialize<'de> for SerializedBytesError[src]

impl Display for SerializedBytesError[src]

impl Eq for SerializedBytesError[src]

impl Error for SerializedBytesError[src]

impl From<SerializedBytesError> for String[src]

impl Hash for SerializedBytesError[src]

impl Ord for SerializedBytesError[src]

impl PartialEq<SerializedBytesError> for SerializedBytesError[src]

impl PartialOrd<SerializedBytesError> for SerializedBytesError[src]

impl Serialize for SerializedBytesError[src]

impl StructuralEq for SerializedBytesError[src]

impl StructuralPartialEq for SerializedBytesError[src]

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, 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.