pub enum EItemState {
ITEM_STATE_IDLE = 0,
ITEM_STATE_USED = 1,
ITEM_STATE_DELETED = 2,
}
Variants§
Trait Implementations§
Source§impl Clone for EItemState
impl Clone for EItemState
Source§fn clone(&self) -> EItemState
fn clone(&self) -> EItemState
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for EItemState
impl Debug for EItemState
Source§impl PartialEq for EItemState
impl PartialEq for EItemState
impl Copy for EItemState
impl StructuralPartialEq for EItemState
Auto Trait Implementations§
impl Freeze for EItemState
impl RefUnwindSafe for EItemState
impl Send for EItemState
impl Sync for EItemState
impl Unpin for EItemState
impl UnwindSafe for EItemState
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