#[repr(u8)]pub enum RenderCommandType {
None = 0,
Rectangle = 1,
Border = 2,
Text = 3,
Image = 4,
ScissorStart = 5,
ScissorEnd = 6,
Custom = 7,
GroupBegin = 8,
GroupEnd = 9,
}Variants§
None = 0
Rectangle = 1
Border = 2
Text = 3
Image = 4
ScissorStart = 5
ScissorEnd = 6
Custom = 7
GroupBegin = 8
GroupEnd = 9
Trait Implementations§
Source§impl Clone for RenderCommandType
impl Clone for RenderCommandType
Source§fn clone(&self) -> RenderCommandType
fn clone(&self) -> RenderCommandType
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 RenderCommandType
impl Debug for RenderCommandType
Source§impl Default for RenderCommandType
impl Default for RenderCommandType
Source§fn default() -> RenderCommandType
fn default() -> RenderCommandType
Returns the “default value” for a type. Read more
Source§impl PartialEq for RenderCommandType
impl PartialEq for RenderCommandType
impl Copy 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 UnsafeUnpin 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.