[][src]Enum deltoid::error::DeltaError

pub enum DeltaError {
    BugDetected {
        msg: String,
        file: String,
        line: u32,
        column: u32,
    },
    ExpectedValue,
    FailedToEnsure {
        predicate: String,
        msg: String,
        file: String,
        line: u32,
        column: u32,
    },
    FailedToApplyDelta {
        reason: String,
    },
    IllegalDelta {
        index: usize,
    },
    RwLockAccessWouldBlock,
    RwLockPoisoned(String),
}

Variants

BugDetected

Fields of BugDetected

msg: Stringfile: Stringline: u32column: u32
ExpectedValue
FailedToEnsure

Fields of FailedToEnsure

predicate: Stringmsg: Stringfile: Stringline: u32column: u32
FailedToApplyDelta

Fields of FailedToApplyDelta

reason: String
IllegalDelta

Fields of IllegalDelta

index: usize
RwLockAccessWouldBlock
RwLockPoisoned(String)

Trait Implementations

impl Clone for DeltaError[src]

impl Debug for DeltaError[src]

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

impl Eq for DeltaError[src]

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

impl Hash for DeltaError[src]

impl Ord for DeltaError[src]

impl PartialEq<DeltaError> for DeltaError[src]

impl PartialOrd<DeltaError> for DeltaError[src]

impl Serialize for DeltaError[src]

impl StructuralEq for DeltaError[src]

impl StructuralPartialEq for DeltaError[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: Deserialize<'de>, 
[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, 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.