pub struct Output<'a> { /* private fields */ }
Expand description
An abstraction over fmt::Write
for the rendering.
This is a utility type used in the engine which can be written into like one
can write into an std::fmt::Write
value. It’s primarily used internally
in the engine but it’s also passed to the custom formatter function.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for Output<'a>
impl<'a> !RefUnwindSafe for Output<'a>
impl<'a> !Send for Output<'a>
impl<'a> !Sync for Output<'a>
impl<'a> Unpin for Output<'a>
impl<'a> !UnwindSafe for Output<'a>
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