pub enum RenderCommand {
Clear(ClearCommand),
Fill(FillCommand),
Stroke(StrokeCommand),
Text(TextCommand),
Image(ImageCommand),
Clip(ClipCommand),
Transform(TransformCommand),
State(StateCommand),
}Variants§
Clear(ClearCommand)
Fill(FillCommand)
Stroke(StrokeCommand)
Text(TextCommand)
Image(ImageCommand)
Clip(ClipCommand)
Transform(TransformCommand)
State(StateCommand)
Trait Implementations§
Source§impl Clone for RenderCommand
impl Clone for RenderCommand
Source§fn clone(&self) -> RenderCommand
fn clone(&self) -> RenderCommand
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 RenderCommand
impl Debug for RenderCommand
Source§impl PartialEq for RenderCommand
impl PartialEq for RenderCommand
impl StructuralPartialEq for RenderCommand
Auto Trait Implementations§
impl Freeze for RenderCommand
impl RefUnwindSafe for RenderCommand
impl Send for RenderCommand
impl Sync for RenderCommand
impl Unpin for RenderCommand
impl UnsafeUnpin for RenderCommand
impl UnwindSafe for RenderCommand
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