Enum ate::error::ChainCreationError[][src]

pub enum ChainCreationError {
Show variants ProcessError(ProcessError), IO(Error), SerializationError(SerializationError), NoRootFoundInConfig, NoRootFoundForUrl(String), UnsupportedProtocol, UrlInvalid(ParseError), NotSupported, NotThisRoot, NotImplemented, TimeError(TimeError), NoValidDomain(String), CommsError(CommsError), DnsProtoError(DnsProtoError), DnsClientError(DnsClientError), ServerRejected(String), InternalError(String),
}

Variants

ProcessError(ProcessError)
IO(Error)
SerializationError(SerializationError)
NoRootFoundInConfig
NoRootFoundForUrl(String)
UnsupportedProtocol
UrlInvalid(ParseError)
NotSupported
NotThisRoot
NotImplemented
TimeError(TimeError)
NoValidDomain(String)
CommsError(CommsError)
DnsProtoError(DnsProtoError)
DnsClientError(DnsClientError)
ServerRejected(String)
InternalError(String)

Trait Implementations

impl Debug for ChainCreationError[src]

impl Display for ChainCreationError[src]

impl Error for ChainCreationError[src]

impl From<ChainCreationError> for CommsError[src]

impl<E> From<ChainCreationError> for ServiceError<E>[src]

impl From<ChainCreationError> for AteError[src]

impl From<CommsError> for ChainCreationError[src]

impl From<Error> for ChainCreationError[src]

impl From<Error> for ChainCreationError[src]

impl From<ParseError> for ChainCreationError[src]

impl From<ProcessError> for ChainCreationError[src]

impl From<ProtoError> for ChainCreationError[src]

impl From<SerializationError> for ChainCreationError[src]

impl From<TimeError> for ChainCreationError[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>,