pub struct ApproveAuthSessionRequest {
pub qr_challenge_url: String,
pub approve: bool,
pub persistence: Option<ESessionPersistence>,
}Expand description
Request to approve an auth session.
Fields§
§qr_challenge_url: StringQR challenge URL.
approve: boolWhether to approve (true) or deny (false).
persistence: Option<ESessionPersistence>Session persistence.
Trait Implementations§
Source§impl Clone for ApproveAuthSessionRequest
impl Clone for ApproveAuthSessionRequest
Source§fn clone(&self) -> ApproveAuthSessionRequest
fn clone(&self) -> ApproveAuthSessionRequest
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 moreAuto Trait Implementations§
impl Freeze for ApproveAuthSessionRequest
impl RefUnwindSafe for ApproveAuthSessionRequest
impl Send for ApproveAuthSessionRequest
impl Sync for ApproveAuthSessionRequest
impl Unpin for ApproveAuthSessionRequest
impl UnsafeUnpin for ApproveAuthSessionRequest
impl UnwindSafe for ApproveAuthSessionRequest
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