pub struct DisplayPath<T>(/* private fields */);Expand description
Wrapper that gives a Path-like value a fmt::Display impl (via
Path::display) so it can be used in contexts that require Display,
e.g. as the context slot of WithContext under the
default Colon strategy. Prefer
PathColon when you only need a path-aware strategy.
Trait Implementations§
Source§impl<T: Clone> Clone for DisplayPath<T>
impl<T: Clone> Clone for DisplayPath<T>
Source§fn clone(&self) -> DisplayPath<T>
fn clone(&self) -> DisplayPath<T>
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<T> From<T> for DisplayPath<T>
impl<T> From<T> for DisplayPath<T>
Source§impl<T: Hash> Hash for DisplayPath<T>
impl<T: Hash> Hash for DisplayPath<T>
Source§impl<T: PartialEq> PartialEq for DisplayPath<T>
impl<T: PartialEq> PartialEq for DisplayPath<T>
Source§fn eq(&self, other: &DisplayPath<T>) -> bool
fn eq(&self, other: &DisplayPath<T>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<T: Copy> Copy for DisplayPath<T>
impl<T: Eq> Eq for DisplayPath<T>
impl<T> StructuralPartialEq for DisplayPath<T>
Auto Trait Implementations§
impl<T> Freeze for DisplayPath<T>where
T: Freeze,
impl<T> RefUnwindSafe for DisplayPath<T>where
T: RefUnwindSafe,
impl<T> Send for DisplayPath<T>where
T: Send,
impl<T> Sync for DisplayPath<T>where
T: Sync,
impl<T> Unpin for DisplayPath<T>where
T: Unpin,
impl<T> UnsafeUnpin for DisplayPath<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for DisplayPath<T>where
T: UnwindSafe,
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<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