pub struct FederatedIdentity {
pub identity: AgentIdentity,
pub org_id: String,
pub trust_level: String,
}Expand description
Result of successful federation validation.
Fields§
§identity: AgentIdentityMapped internal identity with populated claims.
org_id: StringOrganization that issued the token.
trust_level: StringTrust level from the matching anchor.
Trait Implementations§
Source§impl Clone for FederatedIdentity
impl Clone for FederatedIdentity
Source§fn clone(&self) -> FederatedIdentity
fn clone(&self) -> FederatedIdentity
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 FederatedIdentity
impl RefUnwindSafe for FederatedIdentity
impl Send for FederatedIdentity
impl Sync for FederatedIdentity
impl Unpin for FederatedIdentity
impl UnsafeUnpin for FederatedIdentity
impl UnwindSafe for FederatedIdentity
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