[][src]Enum fantoccini::error::NewSessionError

pub enum NewSessionError {
    BadWebdriverUrl(ParseError),
    Failed(Error),
    Lost(IOError),
    NotW3C(Value),
    SessionNotCreated(WebDriverError),
}

An error occured while attempting to establish a session for a new Client.

Variants

BadWebdriverUrl(ParseError)

The given WebDriver URL is invalid.

Failed(Error)

The WebDriver server could not be reached.

Lost(IOError)

The connection to the WebDriver server was lost.

NotW3C(Value)

The server did not give a WebDriver-conforming response.

SessionNotCreated(WebDriverError)

The WebDriver server refused to create a new session.

Trait Implementations

impl Debug for NewSessionError[src]

impl Display for NewSessionError[src]

impl Error for NewSessionError[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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