pub struct ForwardedIdentity(pub Option<String>);Available on crate feature
bin only.Expand description
The caller identity established by AuthLayer, stored in the request
extensions and read back into the proxy’s per-request context.
None means the request is anonymous; Some(name) carries the forwarded
user name. The client-arm backend does not yet consult it — it is carried for
request attribution/logging and future policy enforcement.
Tuple Fields§
§0: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for ForwardedIdentity
impl Clone for ForwardedIdentity
Source§fn clone(&self) -> ForwardedIdentity
fn clone(&self) -> ForwardedIdentity
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 ForwardedIdentity
impl Debug for ForwardedIdentity
impl Eq for ForwardedIdentity
Source§impl ForwardedUser for ForwardedIdentity
impl ForwardedUser for ForwardedIdentity
Source§fn forwarded_user(&self) -> Option<&str>
fn forwarded_user(&self) -> Option<&str>
Available on crate feature
server only.The forwarded end-user name, or
None when the request is anonymous /
carries no forwarded identity.Source§impl PartialEq for ForwardedIdentity
impl PartialEq for ForwardedIdentity
impl StructuralPartialEq for ForwardedIdentity
Auto Trait Implementations§
impl Freeze for ForwardedIdentity
impl RefUnwindSafe for ForwardedIdentity
impl Send for ForwardedIdentity
impl Sync for ForwardedIdentity
impl Unpin for ForwardedIdentity
impl UnsafeUnpin for ForwardedIdentity
impl UnwindSafe for ForwardedIdentity
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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.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§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more