pub struct RenderContext { /* private fields */ }Expand description
Rendering context that tracks parameter assignment.
Uses interior mutability (RefCell) so that Render::render can take &self,
enabling the Fmt wrapper to implement Display.
Implementations§
Source§impl RenderContext
impl RenderContext
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for RenderContext
impl !RefUnwindSafe for RenderContext
impl Send for RenderContext
impl !Sync for RenderContext
impl Unpin for RenderContext
impl UnsafeUnpin for RenderContext
impl UnwindSafe for RenderContext
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