pub struct DisplaySerializer<'a, V: ?Sized> { /* private fields */ }
Expand description
A wrapper struct that implements std::fmt::Display
for any serde::Serialize
type.
This struct is created by the display
function.
Trait Implementations§
Auto Trait Implementations§
impl<'a, V> Freeze for DisplaySerializer<'a, V>where
V: ?Sized,
impl<'a, V> RefUnwindSafe for DisplaySerializer<'a, V>where
V: RefUnwindSafe + ?Sized,
impl<'a, V> Send for DisplaySerializer<'a, V>
impl<'a, V> Sync for DisplaySerializer<'a, V>
impl<'a, V> Unpin for DisplaySerializer<'a, V>where
V: ?Sized,
impl<'a, V> UnwindSafe for DisplaySerializer<'a, V>where
V: RefUnwindSafe + ?Sized,
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