[][src]Struct fibers_rpc::server::NoReply

pub struct NoReply { /* fields omitted */ }

This represents a task for handling an RPC notification.

Implementations

impl NoReply[src]

pub fn future<F>(f: F) -> Self where
    F: Future<Item = (), Error = Never> + Send + 'static, 
[src]

Makes a NoReply instance which will execute future for handling the notification.

pub fn done() -> Self[src]

Makes a NoReply instance which has no task.

Trait Implementations

impl Debug for NoReply[src]

Auto Trait Implementations

impl !RefUnwindSafe for NoReply

impl Send for NoReply

impl !Sync for NoReply

impl Unpin for NoReply

impl !UnwindSafe for NoReply

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.