[][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: &str) -> Client[src]

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

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

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

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

Trait Implementations

impl Debug for Client[src]

Auto Trait Implementations

impl Send for Client

impl Unpin for Client

impl !Sync for Client

impl !RefUnwindSafe for Client

impl !UnwindSafe for Client

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for 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> Borrow<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Erased for T

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,