[][src]Enum kerberos_ccache::ConvertError

pub enum ConvertError {
    Asn1Error(Error),
    InvalidAscii,
    FromUtf8Error,
    NoPrincipalName,
    NoAddress,
    BinaryParseError,
    MissingField(String),
    KrbCredError(String),
}

Type of error in kerbeiros library.

Variants

Asn1Error(Error)

Error handlening asn1 entities.

InvalidAscii

Invalid ascii string.

FromUtf8Error

Invalid utf8 string.

NoPrincipalName

No principal name

NoAddress

No address found

BinaryParseError

Error parsing binary data

MissingField(String)

The parsed struct doesn't have a required field. This could be due a Option field which is None.

KrbCredError(String)

Trait Implementations

impl Clone for ConvertError[src]

impl Debug for ConvertError[src]

impl Display for ConvertError[src]

impl Fail for ConvertError[src]

impl From<Error> for ConvertError[src]

impl From<FromUtf8Error> for ConvertError[src]

impl PartialEq<ConvertError> for ConvertError[src]

impl StructuralPartialEq for ConvertError[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<E> Fail for E where
    E: 'static + Error + Send + Sync
[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> 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.