Struct htrpc::RpcServer

source ·
pub struct RpcServer { /* private fields */ }
Expand description

RPC Server.

Trait Implementations§

source§

impl Future for RpcServer

§

type Item = ()

The type of value that this future will resolved with if it is successful.
§

type Error = Error

The type of error that this future will resolve with if it fails in a normal fashion.
source§

fn poll(&mut self) -> Poll<Self::Item, Self::Error>

Query this future to see if its value has become available, registering interest if it is not. Read more
source§

fn wait(self) -> Result<Self::Item, Self::Error>where Self: Sized,

Block the current thread until this future is resolved. Read more
source§

fn map<F, U>(self, f: F) -> Map<Self, F>where F: FnOnce(Self::Item) -> U, Self: Sized,

Map this future’s result to a different type, returning a new future of the resulting type. Read more
source§

fn map_err<F, E>(self, f: F) -> MapErr<Self, F>where F: FnOnce(Self::Error) -> E, Self: Sized,

Map this future’s error to a different error, returning a new future. Read more
source§

fn from_err<E>(self) -> FromErr<Self, E>where E: From<Self::Error>, Self: Sized,

Map this future’s error to any error implementing From for this future’s Error, returning a new future. Read more
source§

fn then<F, B>(self, f: F) -> Then<Self, B, F>where F: FnOnce(Result<Self::Item, Self::Error>) -> B, B: IntoFuture, Self: Sized,

Chain on a computation for when a future finished, passing the result of the future to the provided closure f. Read more
source§

fn and_then<F, B>(self, f: F) -> AndThen<Self, B, F>where F: FnOnce(Self::Item) -> B, B: IntoFuture<Error = Self::Error>, Self: Sized,

Execute another future after this one has resolved successfully. Read more
source§

fn or_else<F, B>(self, f: F) -> OrElse<Self, B, F>where F: FnOnce(Self::Error) -> B, B: IntoFuture<Item = Self::Item>, Self: Sized,

Execute another future if this one resolves with an error. Read more
source§

fn select<B>(self, other: B) -> Select<Self, <B as IntoFuture>::Future>where B: IntoFuture<Item = Self::Item, Error = Self::Error>, Self: Sized,

Waits for either one of two futures to complete. Read more
source§

fn select2<B>(self, other: B) -> Select2<Self, <B as IntoFuture>::Future>where B: IntoFuture, Self: Sized,

Waits for either one of two differently-typed futures to complete. Read more
source§

fn join<B>(self, other: B) -> Join<Self, <B as IntoFuture>::Future>where B: IntoFuture<Error = Self::Error>, Self: Sized,

Joins the result of two futures, waiting for them both to complete. Read more
source§

fn join3<B, C>( self, b: B, c: C ) -> Join3<Self, <B as IntoFuture>::Future, <C as IntoFuture>::Future>where B: IntoFuture<Error = Self::Error>, C: IntoFuture<Error = Self::Error>, Self: Sized,

Same as join, but with more futures.
source§

fn join4<B, C, D>( self, b: B, c: C, d: D ) -> Join4<Self, <B as IntoFuture>::Future, <C as IntoFuture>::Future, <D as IntoFuture>::Future>where B: IntoFuture<Error = Self::Error>, C: IntoFuture<Error = Self::Error>, D: IntoFuture<Error = Self::Error>, Self: Sized,

Same as join, but with more futures.
source§

fn join5<B, C, D, E>( self, b: B, c: C, d: D, e: E ) -> Join5<Self, <B as IntoFuture>::Future, <C as IntoFuture>::Future, <D as IntoFuture>::Future, <E as IntoFuture>::Future>where B: IntoFuture<Error = Self::Error>, C: IntoFuture<Error = Self::Error>, D: IntoFuture<Error = Self::Error>, E: IntoFuture<Error = Self::Error>, Self: Sized,

Same as join, but with more futures.
source§

fn into_stream(self) -> IntoStream<Self>where Self: Sized,

Convert this future into a single element stream. Read more
source§

fn fuse(self) -> Fuse<Self>where Self: Sized,

Fuse a future such that poll will never again be called once it has completed. Read more
source§

fn inspect<F>(self, f: F) -> Inspect<Self, F>where F: FnOnce(&Self::Item), Self: Sized,

Do something with the item of a future, passing it on. Read more
source§

fn shared(self) -> Shared<Self>where Self: Sized,

Create a cloneable handle to this future where all handles will resolve to the same result. Read more

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> FutureExt for Twhere T: Future,

source§

fn select_either<B>( self, other: B ) -> SelectEither<Self, <B as IntoFuture>::Future>where B: IntoFuture,

Polls both AAA and BBB, will select one which is available first. Read more
source§

impl<T> FutureExt for T

source§

fn timeout<E>(self, delay_from_now: Duration) -> Timeout<Self>where Self: Future<Error = E>, E: From<Error>,

source§

fn write_all_bytes<B>(self, buf: B) -> WriteAllBytes<Self, B>where B: AsRef<[u8]>, Self: Write,

source§

fn read_all_bytes(self) -> ReadAllBytes<Self>where Self: Read,

source§

fn read_all_str(self) -> ReadAllStr<Self>where Self: Read,

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<F> IntoFuture for Fwhere F: Future,

§

type Future = F

The future that this type can be converted into.
§

type Item = <F as Future>::Item

The item that the future may resolve with.
§

type Error = <F as Future>::Error

The error that the future may resolve with.
source§

fn into_future(self) -> F

Consumes this object and produces a future.
source§

impl<T> IoExt for T

source§

fn into_body_reader(self) -> Result<BodyReader<Self>, Error>where Self: Read + Metadata,

source§

fn max_length(self, max_len: u64) -> MaxLength<Self>where Self: Read,

source§

impl<T> TimerExt for Twhere T: Future,

source§

fn timeout_after(self, duration: Duration) -> TimeoutAfter<Self>

Adds the specified timeout to this future.
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.