Struct fibers_rpc::server::Reply [] [src]

pub struct Reply<T: Call> { /* fields omitted */ }

This represents a reply from a RPC server.

Methods

impl<T: Call> Reply<T>
[src]

[src]

Makes a Reply instance which will execute future then reply the resulting item as the response.

[src]

Makes a Reply instance which replies the response immediately.

Trait Implementations

impl<T: Call> Debug for Reply<T>
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl<T> Send for Reply<T> where
    <T as Call>::Res: Send

impl<T> !Sync for Reply<T>