pub struct RenderReport {
pub title: String,
pub state: Value,
pub vertices: usize,
}Expand description
What a headless render of one facet looked like.
Fields§
§title: String§state: ValueThe component’s observable state (its Facet::state_json).
vertices: usizeTessellated mesh vertices — a proxy for “it actually drew something”.
Implementations§
Trait Implementations§
Source§impl Clone for RenderReport
impl Clone for RenderReport
Source§fn clone(&self) -> RenderReport
fn clone(&self) -> RenderReport
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 RenderReport
impl RefUnwindSafe for RenderReport
impl Send for RenderReport
impl Sync for RenderReport
impl Unpin for RenderReport
impl UnsafeUnpin for RenderReport
impl UnwindSafe for RenderReport
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