pub enum PrimitiveNode {
Draw(DrawPrimitiveNode),
Text(Box<TextPrimitiveNode>),
}Variants§
Draw(DrawPrimitiveNode)
Text(Box<TextPrimitiveNode>)
Trait Implementations§
Source§impl Clone for PrimitiveNode
impl Clone for PrimitiveNode
Source§fn clone(&self) -> PrimitiveNode
fn clone(&self) -> PrimitiveNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PrimitiveNode
impl Debug for PrimitiveNode
Source§impl PartialEq for PrimitiveNode
impl PartialEq for PrimitiveNode
impl StructuralPartialEq for PrimitiveNode
Auto Trait Implementations§
impl Freeze for PrimitiveNode
impl !RefUnwindSafe for PrimitiveNode
impl !Send for PrimitiveNode
impl !Sync for PrimitiveNode
impl Unpin for PrimitiveNode
impl UnsafeUnpin for PrimitiveNode
impl !UnwindSafe for PrimitiveNode
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