Struct capnp::capability::Response[][src]

pub struct Response<Results> {
    pub marker: PhantomData<Results>,
    pub hook: Box<dyn ResponseHook>,
}

A response from a method call, as seen by the client.

Fields

marker: PhantomData<Results>hook: Box<dyn ResponseHook>

Implementations

impl<Results> Response<Results> where
    Results: Pipelined + for<'a> Owned<'a>, 
[src]

pub fn new(hook: Box<dyn ResponseHook>) -> Response<Results>[src]

pub fn get<'a>(&'a self) -> Result<<Results as Owned<'a>>::Reader>[src]

Auto Trait Implementations

impl<Results> !RefUnwindSafe for Response<Results>

impl<Results> !Send for Response<Results>

impl<Results> !Sync for Response<Results>

impl<Results> Unpin for Response<Results> where
    Results: Unpin

impl<Results> !UnwindSafe for Response<Results>

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.