#[repr(u8)]pub enum RenderCommandType {
None = 0,
Rectangle = 1,
Border = 2,
Text = 3,
Image = 4,
ScissorStart = 5,
ScissorEnd = 6,
Custom = 7,
}Variants§
Trait Implementations§
Source§impl Clone for RenderCommandType
impl Clone for RenderCommandType
Source§fn clone(&self) -> RenderCommandType
fn clone(&self) -> RenderCommandType
Returns a copy 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 RenderCommandType
impl Debug for RenderCommandType
Source§impl PartialEq for RenderCommandType
impl PartialEq for RenderCommandType
impl Eq for RenderCommandType
impl StructuralPartialEq for RenderCommandType
Auto Trait Implementations§
impl Freeze for RenderCommandType
impl RefUnwindSafe for RenderCommandType
impl Send for RenderCommandType
impl Sync for RenderCommandType
impl Unpin for RenderCommandType
impl UnwindSafe for RenderCommandType
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