#[non_exhaustive]#[repr(i32)]pub enum CacheProperty {
CachepropCurrent = 0,
HasMin = 1,
CachepropMin = 2,
HasMax = 3,
CachepropMax = 4,
CullLevel = 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.
Trait Implementations§
Source§impl Clone for CacheProperty
impl Clone for CacheProperty
Source§fn clone(&self) -> CacheProperty
fn clone(&self) -> CacheProperty
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 CacheProperty
impl Debug for CacheProperty
Source§impl Hash for CacheProperty
impl Hash for CacheProperty
Source§impl PartialEq for CacheProperty
impl PartialEq for CacheProperty
impl Copy for CacheProperty
impl Eq for CacheProperty
impl StructuralPartialEq for CacheProperty
Auto Trait Implementations§
impl Freeze for CacheProperty
impl RefUnwindSafe for CacheProperty
impl Send for CacheProperty
impl Sync for CacheProperty
impl Unpin for CacheProperty
impl UnwindSafe for CacheProperty
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