[][src]Struct indy_data_types::ConversionError

pub struct ConversionError {
    pub context: Option<String>,
    pub source: Option<Box<dyn Error + 'static + Sync + Send, Global>>,
}

Error type for general data conversion errors

Fields

context: Option<String>source: Option<Box<dyn Error + 'static + Sync + Send, Global>>

Implementations

impl ConversionError[src]

pub fn from_msg<T>(msg: T) -> ConversionError where
    T: Into<String>, 
[src]

pub fn from_err<E>(err: E) -> ConversionError where
    E: Error + Send + Sync + 'static, 
[src]

pub fn from_msg_err<M, E>(msg: M, err: E) -> ConversionError where
    E: Error + Send + Sync + 'static,
    M: Into<String>, 
[src]

Trait Implementations

impl Debug for ConversionError[src]

impl Display for ConversionError[src]

impl Error for ConversionError[src]

impl<'_> From<&'_ str> for ConversionError[src]

impl<M, E> From<(M, E)> for ConversionError where
    E: Error + Send + Sync + 'static,
    M: Into<String>, 
[src]

impl From<ConversionError> for ValidationError[src]

impl From<Error> for ConversionError[src]

impl From<FromUtf8Error> for ConversionError[src]

impl From<Option<String>> for ConversionError[src]

impl From<String> for ConversionError[src]

impl From<UnexpectedError> for ConversionError[src]

impl From<Utf8Error> for ConversionError[src]

impl From<ValidationError> for ConversionError[src]

impl Into<String> for ConversionError[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> 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> 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>,