pub struct RenderCache {
pub key: RenderCacheKey,
pub lines: Vec<String>,
}Expand description
Cached render output.
Fields§
§key: RenderCacheKeyThe cache key used to generate this output.
lines: Vec<String>Rendered lines.
Trait Implementations§
Source§impl Clone for RenderCache
impl Clone for RenderCache
Source§fn clone(&self) -> RenderCache
fn clone(&self) -> RenderCache
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RenderCache
impl RefUnwindSafe for RenderCache
impl Send for RenderCache
impl Sync for RenderCache
impl Unpin for RenderCache
impl UnsafeUnpin for RenderCache
impl UnwindSafe for RenderCache
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