pub struct CancelReplaceErrorResponse {
pub code: i32,
pub msg: String,
pub data: CancelReplaceErrorData,
}Expand description
Cancel-replace error response wrapper.
Fields§
§code: i32Error code.
msg: StringError message.
data: CancelReplaceErrorDataError data payload.
Trait Implementations§
Source§impl Clone for CancelReplaceErrorResponse
impl Clone for CancelReplaceErrorResponse
Source§fn clone(&self) -> CancelReplaceErrorResponse
fn clone(&self) -> CancelReplaceErrorResponse
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 CancelReplaceErrorResponse
impl Debug for CancelReplaceErrorResponse
Source§impl<'de> Deserialize<'de> for CancelReplaceErrorResponse
impl<'de> Deserialize<'de> for CancelReplaceErrorResponse
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
Auto Trait Implementations§
impl Freeze for CancelReplaceErrorResponse
impl RefUnwindSafe for CancelReplaceErrorResponse
impl Send for CancelReplaceErrorResponse
impl Sync for CancelReplaceErrorResponse
impl Unpin for CancelReplaceErrorResponse
impl UnwindSafe for CancelReplaceErrorResponse
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