[][src]Struct foundationdb::future::FdbAddress

pub struct FdbAddress { /* fields omitted */ }

An address owned by a foundationDB future

Because the data it represent is owned by the future in FdbAddresses, you can never own a FdbAddress directly, you can only have references to it. This way, you can never obtain a lifetime greater than the lifetime of the slice that gave you access to it.

Trait Implementations

impl AsRef<CStr> for FdbAddress[src]

impl Deref for FdbAddress[src]

type Target = CStr

The resulting type after dereferencing.

Auto Trait Implementations

impl RefUnwindSafe for FdbAddress

impl !Send for FdbAddress

impl !Sync for FdbAddress

impl Unpin for FdbAddress

impl UnwindSafe for FdbAddress

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