pub struct LogoutFlow {
pub logout_token: String,
pub logout_url: String,
}Expand description
LogoutFlow : Logout Flow
Fields§
§logout_token: StringLogoutToken can be used to perform logout using AJAX.
logout_url: StringLogoutURL can be opened in a browser to sign the user out. format: uri
Implementations§
Source§impl LogoutFlow
impl LogoutFlow
Sourcepub fn new(logout_token: String, logout_url: String) -> LogoutFlow
pub fn new(logout_token: String, logout_url: String) -> LogoutFlow
Logout Flow
Trait Implementations§
Source§impl Clone for LogoutFlow
impl Clone for LogoutFlow
Source§fn clone(&self) -> LogoutFlow
fn clone(&self) -> LogoutFlow
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 LogoutFlow
impl Debug for LogoutFlow
Source§impl Default for LogoutFlow
impl Default for LogoutFlow
Source§fn default() -> LogoutFlow
fn default() -> LogoutFlow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LogoutFlow
impl<'de> Deserialize<'de> for LogoutFlow
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 LogoutFlow
impl PartialEq for LogoutFlow
Source§impl Serialize for LogoutFlow
impl Serialize for LogoutFlow
impl StructuralPartialEq for LogoutFlow
Auto Trait Implementations§
impl Freeze for LogoutFlow
impl RefUnwindSafe for LogoutFlow
impl Send for LogoutFlow
impl Sync for LogoutFlow
impl Unpin for LogoutFlow
impl UnwindSafe for LogoutFlow
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