[][src]Struct foundationdb::api::NetworkWait

pub struct NetworkWait { /* fields omitted */ }

A condition object that can wait for the associated NetworkRunner to actually run.

Most of the time you should never need to use this directly and use boot().

Implementations

impl NetworkWait[src]

pub fn wait(self) -> NetworkStop[src]

Wait for the associated NetworkRunner to actually run.

Panics

Panics if the internal lock cannot is poisoned

Auto Trait Implementations

impl !RefUnwindSafe for NetworkWait

impl Send for NetworkWait

impl Sync for NetworkWait

impl Unpin for NetworkWait

impl !UnwindSafe for NetworkWait

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>,