pub struct Formatted<T> { /* private fields */ }
Expand description
A value together with its to_string
representation,
including surrounding it whitespaces and comments.
Implementations§
source§impl<T> Formatted<T>where
T: ValueRepr,
impl<T> Formatted<T>where
T: ValueRepr,
sourcepub fn into_value(self) -> T
pub fn into_value(self) -> T
The wrapped value
sourcepub fn default_repr(&self) -> Repr
pub fn default_repr(&self) -> Repr
Returns the default raw representation.
sourcepub fn display_repr(&self) -> Cow<'_, str>
pub fn display_repr(&self) -> Cow<'_, str>
Returns a raw representation.
Trait Implementations§
source§impl<T: PartialEq> PartialEq for Formatted<T>
impl<T: PartialEq> PartialEq for Formatted<T>
impl<T: Eq> Eq for Formatted<T>
impl<T> StructuralPartialEq for Formatted<T>
Auto Trait Implementations§
impl<T> Freeze for Formatted<T>where
T: Freeze,
impl<T> RefUnwindSafe for Formatted<T>where
T: RefUnwindSafe,
impl<T> Send for Formatted<T>where
T: Send,
impl<T> Sync for Formatted<T>where
T: Sync,
impl<T> Unpin for Formatted<T>where
T: Unpin,
impl<T> UnwindSafe for Formatted<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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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.