[][src]Struct httpmock::MockServer

pub struct MockServer { /* fields omitted */ }

Implementations

impl MockServer[src]

pub async fn connect_async<'_>(address: &'_ str) -> Self[src]

pub fn connect(address: &str) -> Self[src]

pub async fn connect_from_env_async() -> Self[src]

pub fn connect_from_env() -> Self[src]

pub async fn start_async() -> Self[src]

pub fn start() -> MockServer[src]

pub fn host(&self) -> String[src]

pub fn port(&self) -> u16[src]

pub fn address(&self) -> &SocketAddr[src]

pub fn url(&self, path: &str) -> String[src]

Trait Implementations

impl Drop for MockServer[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> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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> WithSubscriber for T[src]