pub struct ActionResponseError {
pub code: String,
pub message: String,
}Fields§
§code: String§message: StringTrait Implementations§
Source§impl Clone for ActionResponseError
impl Clone for ActionResponseError
Source§fn clone(&self) -> ActionResponseError
fn clone(&self) -> ActionResponseError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActionResponseError
impl Debug for ActionResponseError
Source§impl<'de> Deserialize<'de> for ActionResponseError
impl<'de> Deserialize<'de> for ActionResponseError
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
impl Eq for ActionResponseError
Source§impl PartialEq for ActionResponseError
impl PartialEq for ActionResponseError
Source§fn eq(&self, other: &ActionResponseError) -> bool
fn eq(&self, other: &ActionResponseError) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActionResponseError
impl Serialize for ActionResponseError
impl StructuralPartialEq for ActionResponseError
Auto Trait Implementations§
impl Freeze for ActionResponseError
impl RefUnwindSafe for ActionResponseError
impl Send for ActionResponseError
impl Sync for ActionResponseError
impl Unpin for ActionResponseError
impl UnsafeUnpin for ActionResponseError
impl UnwindSafe for ActionResponseError
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