pub struct GrpcGatewayRuntimeError {
pub code: Option<i64>,
pub details: Vec<GoogleProtobufAny>,
pub error: Option<String>,
pub message: Option<String>,
}
Fields§
§code: Option<i64>
§details: Vec<GoogleProtobufAny>
§error: Option<String>
§message: Option<String>
Trait Implementations§
Source§impl Clone for GrpcGatewayRuntimeError
impl Clone for GrpcGatewayRuntimeError
Source§fn clone(&self) -> GrpcGatewayRuntimeError
fn clone(&self) -> GrpcGatewayRuntimeError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GrpcGatewayRuntimeError
impl Debug for GrpcGatewayRuntimeError
Source§impl<'de> Deserialize<'de> for GrpcGatewayRuntimeError
impl<'de> Deserialize<'de> for GrpcGatewayRuntimeError
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&GrpcGatewayRuntimeError> for GrpcGatewayRuntimeError
impl From<&GrpcGatewayRuntimeError> for GrpcGatewayRuntimeError
Source§fn from(value: &GrpcGatewayRuntimeError) -> Self
fn from(value: &GrpcGatewayRuntimeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GrpcGatewayRuntimeError
impl RefUnwindSafe for GrpcGatewayRuntimeError
impl Send for GrpcGatewayRuntimeError
impl Sync for GrpcGatewayRuntimeError
impl Unpin for GrpcGatewayRuntimeError
impl UnwindSafe for GrpcGatewayRuntimeError
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