pub struct RpcErrorBody {
pub code: String,
pub message: String,
pub retryable: bool,
pub details: Option<Value>,
}Fields§
§code: String§message: String§retryable: bool§details: Option<Value>Trait Implementations§
Source§impl Clone for RpcErrorBody
impl Clone for RpcErrorBody
Source§fn clone(&self) -> RpcErrorBody
fn clone(&self) -> RpcErrorBody
Returns a duplicate 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 RpcErrorBody
impl Debug for RpcErrorBody
Auto Trait Implementations§
impl Freeze for RpcErrorBody
impl RefUnwindSafe for RpcErrorBody
impl Send for RpcErrorBody
impl Sync for RpcErrorBody
impl Unpin for RpcErrorBody
impl UnsafeUnpin for RpcErrorBody
impl UnwindSafe for RpcErrorBody
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