Enum grpcio::MethodType[][src]

pub enum MethodType {
    Unary,
    ClientStreaming,
    ServerStreaming,
    Duplex,
}

Method types supported by gRPC.

Variants

Single request sent from client, single response received from server.

Stream of requests sent from client, single response received from server.

Single request sent from client, stream of responses received from server.

Both server and client can stream arbitrary number of requests and responses simultaneously.

Trait Implementations

impl Clone for MethodType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for MethodType
[src]

Auto Trait Implementations

impl Send for MethodType

impl Sync for MethodType