pub struct SessionEndChallenge {
pub flow_info: Option<ContextualFlowInfo>,
pub component: Option<String>,
pub response_errors: Option<HashMap<String, Vec<ErrorDetail>>>,
pub pending_user: String,
pub pending_user_avatar: String,
pub application_name: Option<String>,
pub application_launch_url: Option<String>,
pub invalidation_flow_url: Option<String>,
pub brand_name: String,
}Expand description
SessionEndChallenge : Challenge for ending a session
Fields§
§flow_info: Option<ContextualFlowInfo>§component: Option<String>§response_errors: Option<HashMap<String, Vec<ErrorDetail>>>§pending_user: String§pending_user_avatar: String§application_name: Option<String>§application_launch_url: Option<String>§invalidation_flow_url: Option<String>§brand_name: StringImplementations§
Trait Implementations§
Source§impl Clone for SessionEndChallenge
impl Clone for SessionEndChallenge
Source§fn clone(&self) -> SessionEndChallenge
fn clone(&self) -> SessionEndChallenge
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 SessionEndChallenge
impl Debug for SessionEndChallenge
Source§impl Default for SessionEndChallenge
impl Default for SessionEndChallenge
Source§fn default() -> SessionEndChallenge
fn default() -> SessionEndChallenge
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionEndChallenge
impl<'de> Deserialize<'de> for SessionEndChallenge
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 SessionEndChallenge
impl PartialEq for SessionEndChallenge
Source§impl Serialize for SessionEndChallenge
impl Serialize for SessionEndChallenge
impl StructuralPartialEq for SessionEndChallenge
Auto Trait Implementations§
impl Freeze for SessionEndChallenge
impl RefUnwindSafe for SessionEndChallenge
impl Send for SessionEndChallenge
impl Sync for SessionEndChallenge
impl Unpin for SessionEndChallenge
impl UnsafeUnpin for SessionEndChallenge
impl UnwindSafe for SessionEndChallenge
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