Struct nats_test_server::NatsTestServer[][src]

pub struct NatsTestServer { /* fields omitted */ }

A test server for NATS-based systems that can inject failures.

Implementations

impl NatsTestServer[src]

A NATS test server, will be stopped on drop

pub fn build() -> NatsTestServerBuilder<&'static str>[src]

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

Get the socket address on which the test server is listening

pub fn restart(self) -> NatsTestServerBuilder<SocketAddr>[src]

Consume and stop this server, start building a new one on the same port, the return value is a builder and so you'll need to call .spawn() on it.

pub fn join(self) -> Result<(), Box<dyn Any + Send>>[src]

Leave the server running and join

Trait Implementations

impl Drop for NatsTestServer[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, 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>,