pub struct ResolveRequest {
pub identity: AuthIdentity,
pub app_id: Arc<str>,
}Expand description
Input to the auth resolver pipeline.
Fields§
§identity: AuthIdentityThe authenticated identity (from cookie, OAuth session, JWT, basic auth, mTLS — whichever provider populated it).
app_id: Arc<str>The target app id this request is being routed to.
Trait Implementations§
Source§impl Clone for ResolveRequest
impl Clone for ResolveRequest
Source§fn clone(&self) -> ResolveRequest
fn clone(&self) -> ResolveRequest
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 ResolveRequest
impl RefUnwindSafe for ResolveRequest
impl Send for ResolveRequest
impl Sync for ResolveRequest
impl Unpin for ResolveRequest
impl UnsafeUnpin for ResolveRequest
impl UnwindSafe for ResolveRequest
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