pub enum AppearanceEntityOrObjectState {
    Active,
    Deactivated,
    Unspecified(u8),
}Expand description
UID 386
Variants§
Trait Implementations§
Source§impl Clone for AppearanceEntityOrObjectState
 
impl Clone for AppearanceEntityOrObjectState
Source§fn clone(&self) -> AppearanceEntityOrObjectState
 
fn clone(&self) -> AppearanceEntityOrObjectState
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 From<AppearanceEntityOrObjectState> for u8
 
impl From<AppearanceEntityOrObjectState> for u8
Source§fn from(value: AppearanceEntityOrObjectState) -> Self
 
fn from(value: AppearanceEntityOrObjectState) -> Self
Converts to this type from the input type.
Source§impl From<u8> for AppearanceEntityOrObjectState
 
impl From<u8> for AppearanceEntityOrObjectState
Source§impl Hash for AppearanceEntityOrObjectState
 
impl Hash for AppearanceEntityOrObjectState
Source§impl PartialEq for AppearanceEntityOrObjectState
 
impl PartialEq for AppearanceEntityOrObjectState
Source§fn eq(&self, other: &AppearanceEntityOrObjectState) -> bool
 
fn eq(&self, other: &AppearanceEntityOrObjectState) -> bool
Tests for 
self and other values to be equal, and is used by ==.impl Copy for AppearanceEntityOrObjectState
impl Eq for AppearanceEntityOrObjectState
impl StructuralPartialEq for AppearanceEntityOrObjectState
Auto Trait Implementations§
impl Freeze for AppearanceEntityOrObjectState
impl RefUnwindSafe for AppearanceEntityOrObjectState
impl Send for AppearanceEntityOrObjectState
impl Sync for AppearanceEntityOrObjectState
impl Unpin for AppearanceEntityOrObjectState
impl UnwindSafe for AppearanceEntityOrObjectState
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