pub enum NodeContent {
Container,
Mark(Mark),
Batch(MarkBatch),
}Expand description
What a node contains.
Variants§
Container
A grouping container (no visual output).
Mark(Mark)
A single visual mark.
Batch(MarkBatch)
A batch of homogeneous marks (for instanced rendering).
Auto Trait Implementations§
impl Freeze for NodeContent
impl RefUnwindSafe for NodeContent
impl Send for NodeContent
impl Sync for NodeContent
impl Unpin for NodeContent
impl UnsafeUnpin for NodeContent
impl UnwindSafe for NodeContent
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