pub enum DisplayCommand {
SolidColor(u32, PixelRect),
Text(String, i32, i32, u32, i32),
Border(u32, PixelRect, i32, BorderSide),
ClipRect(PixelRect),
PopClip,
}Expand description
A display command in the display list
Variants§
SolidColor(u32, PixelRect)
Fill a rectangle with a solid color
Text(String, i32, i32, u32, i32)
Draw text at a position
Border(u32, PixelRect, i32, BorderSide)
Draw a border edge
ClipRect(PixelRect)
Set a clipping rectangle
PopClip
Pop the clipping rectangle
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§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DisplayCommand
impl RefUnwindSafe for DisplayCommand
impl Send for DisplayCommand
impl Sync for DisplayCommand
impl Unpin for DisplayCommand
impl UnwindSafe for DisplayCommand
Blanket Implementations§
§impl<T> Any for Twhere
T: 'static + ?Sized,
impl<T> Any for Twhere
T: 'static + ?Sized,
§impl<T> Borrow<T> for Twhere
T: ?Sized,
impl<T> Borrow<T> for Twhere
T: ?Sized,
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)