pub struct SensitiveUri<'a, P, Q> { /* private fields */ }
Expand description

A wrapper around &Uri which modifies the behavior of Display. Specific parts of the Uri as are marked as sensitive using the methods provided.

The Display implementation will respect the unredacted-logging flag.

Implementations§

source§

impl<'a> SensitiveUri<'a, MakeIdentity, MakeIdentity>

source

pub fn new(uri: &'a Uri) -> Self

Constructs a new SensitiveUri with nothing marked as sensitive.

source§

impl<'a, P, Q> SensitiveUri<'a, P, Q>

source

pub fn label<F>( self, label_marker: F, greedy_label: Option<GreedyLabel>, ) -> SensitiveUri<'a, MakeLabel<F>, Q>

Marks path segments as sensitive by providing predicate over the segment index.

See Label for more info.

source

pub fn query<F>(self, marker: F) -> SensitiveUri<'a, P, MakeQuery<F>>

Marks specific query string values as sensitive by supplying a predicate over the query string keys.

See Query for more info.

Trait Implementations§

source§

impl<'a, P, Q> Display for SensitiveUri<'a, P, Q>
where P: MakeDisplay<&'a str>, Q: MakeDisplay<&'a str>,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a, P, Q> Freeze for SensitiveUri<'a, P, Q>
where P: Freeze, Q: Freeze,

§

impl<'a, P, Q> RefUnwindSafe for SensitiveUri<'a, P, Q>

§

impl<'a, P, Q> Send for SensitiveUri<'a, P, Q>
where P: Send, Q: Send,

§

impl<'a, P, Q> Sync for SensitiveUri<'a, P, Q>
where P: Sync, Q: Sync,

§

impl<'a, P, Q> Unpin for SensitiveUri<'a, P, Q>
where P: Unpin, Q: Unpin,

§

impl<'a, P, Q> UnwindSafe for SensitiveUri<'a, P, Q>
where P: UnwindSafe, Q: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
§

impl<Unshared, Shared> IntoShared<Shared> for Unshared
where Shared: FromUnshared<Unshared>,

§

fn into_shared(self) -> Shared

Creates a shared type from an unshared type.
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more