[][src]Struct indy_data_types::ValidationError

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

Error type for failures of Validatable::validate

Fields

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

Implementations

impl ValidationError[src]

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

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

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

Trait Implementations

impl Debug for ValidationError[src]

impl Display for ValidationError[src]

impl Error for ValidationError[src]

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

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

impl From<ConversionError> for ValidationError[src]

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

impl From<String> for ValidationError[src]

impl From<ValidationError> for ConversionError[src]

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