pub struct AuthBypassProbe {
pub header: String,
pub value: String,
pub label: &'static str,
pub description: &'static str,
}Expand description
One auth-bypass probe to attach to a single request.
Fields§
§header: StringHeader name to inject.
value: StringHeader value.
label: &'static strShort label naming the bypass family (e.g. x-original-url,
forwarded-for-localhost, method-override-put). Useful for
gene-bank attribution.
description: &'static strConcise human description suitable for a finding report.
Trait Implementations§
Source§impl Clone for AuthBypassProbe
impl Clone for AuthBypassProbe
Source§fn clone(&self) -> AuthBypassProbe
fn clone(&self) -> AuthBypassProbe
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 AuthBypassProbe
impl Debug for AuthBypassProbe
Source§impl PartialEq for AuthBypassProbe
impl PartialEq for AuthBypassProbe
Source§fn eq(&self, other: &AuthBypassProbe) -> bool
fn eq(&self, other: &AuthBypassProbe) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for AuthBypassProbe
impl StructuralPartialEq for AuthBypassProbe
Auto Trait Implementations§
impl Freeze for AuthBypassProbe
impl RefUnwindSafe for AuthBypassProbe
impl Send for AuthBypassProbe
impl Sync for AuthBypassProbe
impl Unpin for AuthBypassProbe
impl UnsafeUnpin for AuthBypassProbe
impl UnwindSafe for AuthBypassProbe
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,
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.