pub struct InteractionError {
pub code: Option<String>,
pub message: Option<String>,
}Fields§
§code: Option<String>§message: Option<String>Trait Implementations§
Source§impl Clone for InteractionError
impl Clone for InteractionError
Source§fn clone(&self) -> InteractionError
fn clone(&self) -> InteractionError
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 InteractionError
impl Debug for InteractionError
Source§impl<'de> Deserialize<'de> for InteractionError
impl<'de> Deserialize<'de> for InteractionError
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 PartialEq for InteractionError
impl PartialEq for InteractionError
Source§impl Serialize for InteractionError
impl Serialize for InteractionError
impl StructuralPartialEq for InteractionError
Auto Trait Implementations§
impl Freeze for InteractionError
impl RefUnwindSafe for InteractionError
impl Send for InteractionError
impl Sync for InteractionError
impl Unpin for InteractionError
impl UnsafeUnpin for InteractionError
impl UnwindSafe for InteractionError
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