pub struct LoginFailed {
pub error_code: Option<String>,
pub error_message: Option<String>,
}Expand description
The details for events with this type.
Fields§
§error_code: Option<String>The error code of the failure.
error_message: Option<String>The error message of the failure.
Implementations§
Trait Implementations§
Source§impl Clone for LoginFailed
impl Clone for LoginFailed
Source§fn clone(&self) -> LoginFailed
fn clone(&self) -> LoginFailed
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 LoginFailed
impl Debug for LoginFailed
Source§impl Default for LoginFailed
impl Default for LoginFailed
Source§fn default() -> LoginFailed
fn default() -> LoginFailed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LoginFailed
impl<'de> Deserialize<'de> for LoginFailed
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 LoginFailed
impl PartialEq for LoginFailed
Source§impl Serialize for LoginFailed
impl Serialize for LoginFailed
impl StructuralPartialEq for LoginFailed
Auto Trait Implementations§
impl Freeze for LoginFailed
impl RefUnwindSafe for LoginFailed
impl Send for LoginFailed
impl Sync for LoginFailed
impl Unpin for LoginFailed
impl UnwindSafe for LoginFailed
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