[][src]Trait approveapi::ApproveApiSync

pub trait ApproveApiSync {
    type F: IntoFuture;
    fn sync(
        self
    ) -> Result<<Self::F as IntoFuture>::Item, <Self::F as IntoFuture>::Error>; }

Associated Types

Loading content...

Required methods

fn sync(
    self
) -> Result<<Self::F as IntoFuture>::Item, <Self::F as IntoFuture>::Error>

Loading content...

Implementors

impl<I: Send, T: 'static + IntoFuture<Item = I, Error = Error<Value>> + Send> ApproveApiSync for T where
    <T as IntoFuture>::Future: Send
[src]

type F = T

Loading content...