pub struct LogoutFailed {
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 LogoutFailed
impl Clone for LogoutFailed
Source§fn clone(&self) -> LogoutFailed
fn clone(&self) -> LogoutFailed
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 LogoutFailed
impl Debug for LogoutFailed
Source§impl Default for LogoutFailed
impl Default for LogoutFailed
Source§fn default() -> LogoutFailed
fn default() -> LogoutFailed
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogoutFailed
impl<'de> Deserialize<'de> for LogoutFailed
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 LogoutFailed
impl PartialEq for LogoutFailed
Source§impl Serialize for LogoutFailed
impl Serialize for LogoutFailed
impl StructuralPartialEq for LogoutFailed
Auto Trait Implementations§
impl Freeze for LogoutFailed
impl RefUnwindSafe for LogoutFailed
impl Send for LogoutFailed
impl Sync for LogoutFailed
impl Unpin for LogoutFailed
impl UnwindSafe for LogoutFailed
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