#[non_exhaustive]#[repr(u32)]pub enum EDurationControlProgress {
k_EDurationControlProgress_Full = 0,
k_EDurationControlProgress_Half = 1,
k_EDurationControlProgress_None = 2,
k_EDurationControl_ExitSoon_3h = 3,
k_EDurationControl_ExitSoon_5h = 4,
k_EDurationControl_ExitSoon_Night = 5,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
k_EDurationControlProgress_Full = 0
k_EDurationControlProgress_Half = 1
k_EDurationControlProgress_None = 2
k_EDurationControl_ExitSoon_3h = 3
k_EDurationControl_ExitSoon_5h = 4
k_EDurationControl_ExitSoon_Night = 5
Trait Implementations§
Source§impl Clone for EDurationControlProgress
impl Clone for EDurationControlProgress
Source§fn clone(&self) -> EDurationControlProgress
fn clone(&self) -> EDurationControlProgress
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 EDurationControlProgress
impl Debug for EDurationControlProgress
Source§impl Hash for EDurationControlProgress
impl Hash for EDurationControlProgress
Source§impl PartialEq for EDurationControlProgress
impl PartialEq for EDurationControlProgress
impl Copy for EDurationControlProgress
impl Eq for EDurationControlProgress
impl StructuralPartialEq for EDurationControlProgress
Auto Trait Implementations§
impl Freeze for EDurationControlProgress
impl RefUnwindSafe for EDurationControlProgress
impl Send for EDurationControlProgress
impl Sync for EDurationControlProgress
impl Unpin for EDurationControlProgress
impl UnsafeUnpin for EDurationControlProgress
impl UnwindSafe for EDurationControlProgress
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