pub struct ReceiveMessage400Response {
pub success: Option<bool>,
pub error: Option<String>,
pub error_info: Option<String>,
pub additional_data: Option<Box<ReceiveMessage400ResponseAdditionalData>>,
}
Fields§
§success: Option<bool>
§error: Option<String>
The error description
error_info: Option<String>
§additional_data: Option<Box<ReceiveMessage400ResponseAdditionalData>>
Implementations§
Source§impl ReceiveMessage400Response
impl ReceiveMessage400Response
pub fn new() -> ReceiveMessage400Response
Trait Implementations§
Source§impl Clone for ReceiveMessage400Response
impl Clone for ReceiveMessage400Response
Source§fn clone(&self) -> ReceiveMessage400Response
fn clone(&self) -> ReceiveMessage400Response
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 ReceiveMessage400Response
impl Debug for ReceiveMessage400Response
Source§impl<'de> Deserialize<'de> for ReceiveMessage400Response
impl<'de> Deserialize<'de> for ReceiveMessage400Response
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 StructuralPartialEq for ReceiveMessage400Response
Auto Trait Implementations§
impl Freeze for ReceiveMessage400Response
impl RefUnwindSafe for ReceiveMessage400Response
impl Send for ReceiveMessage400Response
impl Sync for ReceiveMessage400Response
impl Unpin for ReceiveMessage400Response
impl UnwindSafe for ReceiveMessage400Response
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