pub struct LoginMessageResponse {
pub account_id: Option<String>,
pub clearing_status: Option<String>,
pub clearing_status_description: Option<String>,
pub login_message_present: Option<bool>,
pub login_messages: Option<Vec<LoginMessage>>,
}Fields§
§account_id: Option<String>§clearing_status: Option<String>§clearing_status_description: Option<String>§login_message_present: Option<bool>§login_messages: Option<Vec<LoginMessage>>Trait Implementations§
Source§impl Clone for LoginMessageResponse
impl Clone for LoginMessageResponse
Source§fn clone(&self) -> LoginMessageResponse
fn clone(&self) -> LoginMessageResponse
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 LoginMessageResponse
impl Debug for LoginMessageResponse
Source§impl Default for LoginMessageResponse
impl Default for LoginMessageResponse
Source§impl<'de> Deserialize<'de> for LoginMessageResponse
impl<'de> Deserialize<'de> for LoginMessageResponse
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 LoginMessageResponse
impl PartialEq for LoginMessageResponse
impl StructuralPartialEq for LoginMessageResponse
Auto Trait Implementations§
impl Freeze for LoginMessageResponse
impl RefUnwindSafe for LoginMessageResponse
impl Send for LoginMessageResponse
impl Sync for LoginMessageResponse
impl Unpin for LoginMessageResponse
impl UnsafeUnpin for LoginMessageResponse
impl UnwindSafe for LoginMessageResponse
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