Enum tungstenite::error::UrlError[][src]

pub enum UrlError {
    TlsFeatureNotEnabled,
    NoHostName,
    UnableToConnect(String),
    UnsupportedUrlScheme,
    EmptyHostName,
    NoPathOrQuery,
}

Indicates the specific type/cause of URL error.

Variants

TlsFeatureNotEnabled

TLS is used despite not being compiled with the TLS feature enabled.

NoHostName

The URL does not include a host name.

UnableToConnect(String)

Failed to connect with this URL.

UnsupportedUrlScheme

Unsupported URL scheme used (only ws:// or wss:// may be used).

EmptyHostName

The URL host name, though included, is empty.

NoPathOrQuery

The URL does not include a path/query.

Trait Implementations

impl Debug for UrlError[src]

impl Display for UrlError[src]

impl Error for UrlError[src]

impl PartialEq<UrlError> for UrlError[src]

impl Eq for UrlError[src]

impl StructuralEq for UrlError[src]

impl StructuralPartialEq for UrlError[src]

Auto Trait Implementations

impl RefUnwindSafe for UrlError

impl Send for UrlError

impl Sync for UrlError

impl Unpin for UrlError

impl UnwindSafe for UrlError

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[src]

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>, 
[src]