[][src]Enum agnes::error::NetError

pub enum NetError {
    Uri(InvalidUri),
    UnsupportedScheme(Option<Scheme>),
    Tls(Error),
    Http(Error),
    LocalFile,
}

Error that stems from some sort of network-related exception.

Variants

Uri(InvalidUri)

Invalid URI

UnsupportedScheme(Option<Scheme>)

Unsupported Scheme

Tls(Error)

Secure layer error.

Http(Error)

HTTP error.

LocalFile

Local file error

Trait Implementations

impl From<NetError> for AgnesError[src]

impl From<Error> for NetError[src]

impl From<Error> for NetError[src]

impl From<InvalidUri> for NetError[src]

impl Display for NetError[src]

impl Debug for NetError[src]

impl Error for NetError[src]

default fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

The lower-level source of this error, if any. Read more

default fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

Auto Trait Implementations

impl Send for NetError

impl Sync for NetError

Blanket Implementations

impl<T> IntoLabeled for T[src]

impl<T> HasLabels for T[src]

impl<Needle, Haystack> HasLabels for Haystack where
    Haystack: Member<Needle, IsMember = B1>,
    Needle: Label
[src]

impl<Frames, Store> JoinIntoStore for Frames[src]

type Output = Store

The output type after augmenting Store.

impl<Frames> AssocDataIndexCons for Frames[src]

type Output = Nil

Type of associated data index cons-list.

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto 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<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same for T[src]

type Output = T

Should always be Self