Struct grpcio::Method [−][src]
A description of a remote method.
Fields
ty: MethodType
Type of method.
name: &'static str
Full qualified name of the method.
req_mar: Marshaller<Req>
The marshaller used for request messages.
resp_mar: Marshaller<Resp>
The marshaller used for response messages.
Implementations
impl<Req, Resp> Method<Req, Resp>
[src][−]
pub fn req_ser(&self) -> fn(_: &Req, _: &mut GrpcSlice)
[src][−]
Get the request serializer.
pub fn req_de(&self) -> fn(_: MessageReader) -> Result<Req>
[src][−]
Get the request deserializer.
pub fn resp_ser(&self) -> fn(_: &Resp, _: &mut GrpcSlice)
[src][−]
Get the response serializer.
pub fn resp_de(&self) -> fn(_: MessageReader) -> Result<Resp>
[src][−]
Get the response deserializer.
Auto Trait Implementations
impl<Req, Resp> RefUnwindSafe for Method<Req, Resp>
impl<Req, Resp> Send for Method<Req, Resp>
impl<Req, Resp> Sync for Method<Req, Resp>
impl<Req, Resp> Unpin for Method<Req, Resp>
impl<Req, Resp> UnwindSafe for Method<Req, Resp>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,