pub struct IdentityCheckRequest {
pub provider: String,
pub scope: String,
pub allowed_subjects: Vec<String>,
pub min_loa: Option<u8>,
pub max_age_seconds: u64,
}Fields§
§provider: String§scope: String§allowed_subjects: Vec<String>§min_loa: Option<u8>§max_age_seconds: u64Trait Implementations§
Source§impl Clone for IdentityCheckRequest
impl Clone for IdentityCheckRequest
Source§fn clone(&self) -> IdentityCheckRequest
fn clone(&self) -> IdentityCheckRequest
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 IdentityCheckRequest
impl Debug for IdentityCheckRequest
Auto Trait Implementations§
impl Freeze for IdentityCheckRequest
impl RefUnwindSafe for IdentityCheckRequest
impl Send for IdentityCheckRequest
impl Sync for IdentityCheckRequest
impl Unpin for IdentityCheckRequest
impl UnsafeUnpin for IdentityCheckRequest
impl UnwindSafe for IdentityCheckRequest
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