pub enum DisplayCommand {
Quad(Quad),
Image(ImagePrimitive),
Vector(VectorPrimitive),
Text {
block: usize,
transform: Affine2D,
clips: ClipChain,
},
BeginLayer(LayerStyle),
EndLayer,
}Variants§
Trait Implementations§
Source§impl Clone for DisplayCommand
impl Clone for DisplayCommand
Source§fn clone(&self) -> DisplayCommand
fn clone(&self) -> DisplayCommand
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 moreSource§impl Debug for DisplayCommand
impl Debug for DisplayCommand
Source§impl PartialEq for DisplayCommand
impl PartialEq for DisplayCommand
impl StructuralPartialEq for DisplayCommand
Auto Trait Implementations§
impl Freeze for DisplayCommand
impl RefUnwindSafe for DisplayCommand
impl Send for DisplayCommand
impl Sync for DisplayCommand
impl Unpin for DisplayCommand
impl UnsafeUnpin for DisplayCommand
impl UnwindSafe for DisplayCommand
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