pub struct GetLogoutUrlParams {
pub token: SecretString,
}Fields§
§token: SecretStringThe logout token returned from the Logout Authorize endpoint.
Required.
Implementations§
Source§impl GetLogoutUrlParams
impl GetLogoutUrlParams
Sourcepub fn new(token: impl Into<SecretString>) -> Self
pub fn new(token: impl Into<SecretString>) -> Self
Construct a new GetLogoutUrlParams with the required fields set.
Trait Implementations§
Source§impl Clone for GetLogoutUrlParams
impl Clone for GetLogoutUrlParams
Source§fn clone(&self) -> GetLogoutUrlParams
fn clone(&self) -> GetLogoutUrlParams
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetLogoutUrlParams
impl Debug for GetLogoutUrlParams
Auto Trait Implementations§
impl Freeze for GetLogoutUrlParams
impl RefUnwindSafe for GetLogoutUrlParams
impl Send for GetLogoutUrlParams
impl Sync for GetLogoutUrlParams
impl Unpin for GetLogoutUrlParams
impl UnsafeUnpin for GetLogoutUrlParams
impl UnwindSafe for GetLogoutUrlParams
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