pub enum AcsSelection {
Index(u16),
Url(String),
Default,
}Expand description
How the SP nominated its ACS endpoint on the wire. Retained on the validated request for logging / metrics; resolution has already happened.
Variants§
Index(u16)
SP specified AssertionConsumerServiceIndex.
Url(String)
SP specified AssertionConsumerServiceURL.
Default
SP specified neither — IdP used SP metadata’s default endpoint.
Trait Implementations§
Source§impl Clone for AcsSelection
impl Clone for AcsSelection
Source§fn clone(&self) -> AcsSelection
fn clone(&self) -> AcsSelection
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 moreAuto Trait Implementations§
impl Freeze for AcsSelection
impl RefUnwindSafe for AcsSelection
impl Send for AcsSelection
impl Sync for AcsSelection
impl Unpin for AcsSelection
impl UnsafeUnpin for AcsSelection
impl UnwindSafe for AcsSelection
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