Enum grpcio_sys::GrpcCallStatus[][src]

#[repr(C)]
pub enum GrpcCallStatus { Ok, Error, ErrorNotOnServer, ErrorNotOnClient, ErrorAlreadyAccepted, ErrorAlreadyInvoked, ErrorNotInvoked, ErrorAlreadyFinished, ErrorTooManyOperations, ErrorInvalidFlags, ErrorInvalidMetadata, ErrorInvalidMessage, ErrorNotServerCompletionQueue, ErrorBatchTooBig, ErrorPayloadTypeMismatch, ErrorCompletionQueueShutdown, }

Result of a gRPC call.

If the caller satisfies the prerequisites of a particular operation, the GrpcCallStatus returned will be Ok. Receiving any other value listed here is an indication of a bug in the caller.

Based on grpc_call_error.

Variants

Everything went ok.

Something failed, we don't know what.

This method is not available on the server.

This method is not available on the client.

This method must be called before server_accept.

This method must be called before invoke.

This method must be called after invoke.

This call is already finished (writes_done or write_status has already been called).

There is already an outstanding read/write operation on the call.

The flags value was illegal for this call.

Invalid metadata was passed to this call.

Invalid message was passed to this call.

Completion queue for notification has not been registered with the server.

This batch of operations leads to more operations than allowed.

Payload type requested is not the type registered.

Completion queue has been shut down.

Trait Implementations

impl Debug for GrpcCallStatus
[src]

Formats the value using the given formatter. Read more

impl PartialEq for GrpcCallStatus
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations