[][src]Enum casperlabs_types::CLValueError

pub enum CLValueError {
    Serialization(Error),
    Type(CLTypeMismatch),
}

Error relating to CLValue operations.

Variants

Serialization(Error)

An error while serializing or deserializing the underlying data.

A type mismatch while trying to convert a CLValue into a given type.

Trait Implementations

impl Clone for CLValueError[src]

impl Debug for CLValueError[src]

impl Display for CLValueError[src]

impl Eq for CLValueError[src]

impl Fail for CLValueError[src]

impl From<CLValueError> for ApiError[src]

impl PartialEq<CLValueError> for CLValueError[src]

impl StructuralEq for CLValueError[src]

impl StructuralPartialEq for CLValueError[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> AsFail for T where
    T: Fail
[src]

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

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.