pub enum NameIdCreationRequest {
Unspecified,
AllowCreate,
DoNotAllowCreate,
}Expand description
AuthnRequest NameID creation request.
Variants§
Unspecified
The request did not specify whether the IdP may create a new identifier.
AllowCreate
The IdP may create a new identifier.
DoNotAllowCreate
The IdP must not create a new identifier.
Trait Implementations§
Source§impl Clone for NameIdCreationRequest
impl Clone for NameIdCreationRequest
Source§fn clone(&self) -> NameIdCreationRequest
fn clone(&self) -> NameIdCreationRequest
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 moreimpl Copy for NameIdCreationRequest
Source§impl Debug for NameIdCreationRequest
impl Debug for NameIdCreationRequest
impl Eq for NameIdCreationRequest
Source§impl PartialEq for NameIdCreationRequest
impl PartialEq for NameIdCreationRequest
impl StructuralPartialEq for NameIdCreationRequest
Auto Trait Implementations§
impl Freeze for NameIdCreationRequest
impl RefUnwindSafe for NameIdCreationRequest
impl Send for NameIdCreationRequest
impl Sync for NameIdCreationRequest
impl Unpin for NameIdCreationRequest
impl UnsafeUnpin for NameIdCreationRequest
impl UnwindSafe for NameIdCreationRequest
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