[][src]Enum ntge_core::error::CoreError

pub enum CoreError {
    KeyDeserializeError {
        name: &'static str,
        reason: &'static str,
    },
    MessageDecryptionError {
        name: &'static str,
        reason: &'static str,
    },
    MessageSerializationError {
        name: &'static str,
        reason: &'static str,
    },
    KeyInvalidError {
        name: &'static str,
        reason: &'static str,
    },
    SignatureVerificationError {
        name: &'static str,
        reason: &'static str,
    },
}

Variants

KeyDeserializeError

Fields of KeyDeserializeError

name: &'static strreason: &'static str
MessageDecryptionError

Fields of MessageDecryptionError

name: &'static strreason: &'static str
MessageSerializationError

Fields of MessageSerializationError

name: &'static strreason: &'static str
KeyInvalidError

Fields of KeyInvalidError

name: &'static strreason: &'static str
SignatureVerificationError

Fields of SignatureVerificationError

name: &'static strreason: &'static str

Trait Implementations

impl Clone for CoreError[src]

impl Copy for CoreError[src]

impl Debug for CoreError[src]

impl Display for CoreError[src]

impl Eq for CoreError[src]

impl Hash for CoreError[src]

impl PartialEq<CoreError> for CoreError[src]

impl StructuralEq for CoreError[src]

impl StructuralPartialEq for CoreError[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<'a, T> Desc<'a, T> for T[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> 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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,