pub enum GrpcFailureClass {
Code(NonZeroI32),
Error(String),
}
Expand description
The failure class for GrpcErrorsAsFailures
.
Variants§
Code(NonZeroI32)
A gRPC response was classified as a failure with the corresponding status.
Error(String)
A gRPC response was classified as an error with the corresponding error description.
Trait Implementations§
Source§impl Debug for GrpcFailureClass
impl Debug for GrpcFailureClass
Auto Trait Implementations§
impl Freeze for GrpcFailureClass
impl RefUnwindSafe for GrpcFailureClass
impl Send for GrpcFailureClass
impl Sync for GrpcFailureClass
impl Unpin for GrpcFailureClass
impl UnwindSafe for GrpcFailureClass
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Layout§
Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...)
attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.
Size: 24 bytes
Size for each variant:
Code
: 12 bytesError
: 24 bytes