Struct ory_client::models::logout_flow::LogoutFlow
source · 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 copy 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<'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<LogoutFlow> for LogoutFlow
impl PartialEq<LogoutFlow> for LogoutFlow
source§fn eq(&self, other: &LogoutFlow) -> bool
fn eq(&self, other: &LogoutFlow) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for LogoutFlow
impl Serialize for LogoutFlow
impl StructuralPartialEq for LogoutFlow
Auto Trait Implementations§
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