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§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 !RefUnwindSafe for PrimitiveNode
impl !Send for PrimitiveNode
impl !Sync for PrimitiveNode
impl !UnwindSafe for PrimitiveNode
impl Freeze for PrimitiveNode
impl Unpin for PrimitiveNode
impl UnsafeUnpin 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