pub struct AuthResolutionLog {
pub authorization: Option<String>,
pub x_api_key: Option<String>,
}Fields§
Where the upstream Authorization header value came from (never includes the secret).
x_api_key: Option<String>Where the upstream X-API-Key header value came from (never includes the secret).
Trait Implementations§
Source§impl Clone for AuthResolutionLog
impl Clone for AuthResolutionLog
Source§fn clone(&self) -> AuthResolutionLog
fn clone(&self) -> AuthResolutionLog
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 moreSource§impl Debug for AuthResolutionLog
impl Debug for AuthResolutionLog
Auto Trait Implementations§
impl Freeze for AuthResolutionLog
impl RefUnwindSafe for AuthResolutionLog
impl Send for AuthResolutionLog
impl Sync for AuthResolutionLog
impl Unpin for AuthResolutionLog
impl UnwindSafe for AuthResolutionLog
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