[][src]Struct rpcx_client::Client

pub struct Client {
    pub opt: Opt,
    // some fields omitted
}

a direct client to connect rpcx services.

Fields

opt: Opt

Methods

impl Client[src]

pub fn new(addr: &'static str) -> Client[src]

pub fn start(&mut self) -> Result<()>[src]

pub fn send(
    &mut self,
    service_path: String,
    service_method: String,
    is_oneway: bool,
    is_heartbeat: bool,
    metadata: Metadata,
    args: &dyn RpcxParam
) -> CallFuture
[src]

pub fn call<T>(
    &mut self,
    service_path: String,
    service_method: String,
    is_oneway: bool,
    metadata: Metadata,
    args: &dyn RpcxParam
) -> Option<Result<T>> where
    T: RpcxParam + Default
[src]

pub fn acall<T>(
    &mut self,
    service_path: String,
    service_method: String,
    metadata: Metadata,
    args: &dyn RpcxParam
) -> Box<dyn Future<Item = Result<T>, Error = Error>> where
    T: RpcxParam + Default
[src]

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

impl !Sync for Client

impl Send for Client

impl Unpin for Client

impl !RefUnwindSafe for Client

impl !UnwindSafe for Client

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]