Enum hapi_rs::geometry::CacheProperty
source · #[repr(i32)]
#[non_exhaustive]
pub enum CacheProperty {
CachepropCurrent,
HasMin,
CachepropMin,
HasMax,
CachepropMax,
CullLevel,
}
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.
CachepropCurrent
HasMin
CachepropMin
HasMax
CachepropMax
CullLevel
Trait Implementations
sourceimpl Clone for CacheProperty
impl Clone for CacheProperty
sourcefn clone(&self) -> CacheProperty
fn clone(&self) -> CacheProperty
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for CacheProperty
impl Debug for CacheProperty
sourceimpl Hash for CacheProperty
impl Hash for CacheProperty
sourceimpl PartialEq<CacheProperty> for CacheProperty
impl PartialEq<CacheProperty> for CacheProperty
sourcefn eq(&self, other: &CacheProperty) -> bool
fn eq(&self, other: &CacheProperty) -> bool
impl Copy for CacheProperty
impl Eq for CacheProperty
impl StructuralEq for CacheProperty
impl StructuralPartialEq for CacheProperty
Auto Trait Implementations
impl RefUnwindSafe for CacheProperty
impl Send for CacheProperty
impl Sync for CacheProperty
impl Unpin for CacheProperty
impl UnwindSafe for CacheProperty
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more