pub struct Formatted<T> { /* private fields */ }
Expand description
A value together with its to_string
representation,
including surrounding it whitespaces and comments.
Implementations
sourceimpl<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
Trait Implementations
impl<T: Eq> Eq for Formatted<T>
impl<T> StructuralEq for Formatted<T>
impl<T> StructuralPartialEq for Formatted<T>
Auto Trait Implementations
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
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.