pub trait FdbFutureGet {
    unsafe fn get(future: *mut FDBFuture) -> FdbResult<Self>
    where
        Self: Sized
; }
Expand description

Extracts value that are owned by FdbFuture.

Note

You will not directly use this trait. It is used by Future::poll method on FdbFuture.

Required Methods

Extract value that are owned by FdbFuture.

Safety

The caller is responsible for making sure that the pointer future is a valid.

Implementations on Foreign Types

Implementors