pub struct HostedRequestContext {
pub tenant: TenantContext,
pub principal: PrincipalContext,
pub role: HostedRole,
pub scopes: Vec<HostedScope>,
pub credential_id: Option<String>,
pub authenticated_at: OffsetDateTime,
}Expand description
Fully resolved request identity, attached by the hosted gateway before dispatch. Local mode never builds one.
Fields§
§tenant: TenantContext§principal: PrincipalContext§role: HostedRole§scopes: Vec<HostedScope>§credential_id: Option<String>Stable id of the validated credential (key id / token id), for audit correlation only — never the secret.
authenticated_at: OffsetDateTimeImplementations§
Source§impl HostedRequestContext
impl HostedRequestContext
pub fn has_scope(&self, scope: HostedScope) -> bool
Trait Implementations§
Source§impl Clone for HostedRequestContext
impl Clone for HostedRequestContext
Source§fn clone(&self) -> HostedRequestContext
fn clone(&self) -> HostedRequestContext
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 HostedRequestContext
impl Debug for HostedRequestContext
Source§impl<'de> Deserialize<'de> for HostedRequestContext
impl<'de> Deserialize<'de> for HostedRequestContext
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for HostedRequestContext
Source§impl PartialEq for HostedRequestContext
impl PartialEq for HostedRequestContext
Source§fn eq(&self, other: &HostedRequestContext) -> bool
fn eq(&self, other: &HostedRequestContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HostedRequestContext
impl Serialize for HostedRequestContext
impl StructuralPartialEq for HostedRequestContext
Auto Trait Implementations§
impl Freeze for HostedRequestContext
impl RefUnwindSafe for HostedRequestContext
impl Send for HostedRequestContext
impl Sync for HostedRequestContext
impl Unpin for HostedRequestContext
impl UnsafeUnpin for HostedRequestContext
impl UnwindSafe for HostedRequestContext
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.