Enum hapi_rs::geometry::EnvIntType
source · #[repr(i32)]
#[non_exhaustive]
pub enum EnvIntType {
EnvintInvalid,
HoudiniMajor,
HoudiniMinor,
HoudiniBuild,
HoudiniPatch,
EngineMajor,
EngineMinor,
EngineApi,
EnvintMax,
}
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.
EnvintInvalid
HoudiniMajor
HoudiniMinor
HoudiniBuild
HoudiniPatch
EngineMajor
EngineMinor
EngineApi
EnvintMax
Trait Implementations
sourceimpl Clone for EnvIntType
impl Clone for EnvIntType
sourcefn clone(&self) -> EnvIntType
fn clone(&self) -> EnvIntType
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 EnvIntType
impl Debug for EnvIntType
sourceimpl Hash for EnvIntType
impl Hash for EnvIntType
sourceimpl PartialEq<EnvIntType> for EnvIntType
impl PartialEq<EnvIntType> for EnvIntType
sourcefn eq(&self, other: &EnvIntType) -> bool
fn eq(&self, other: &EnvIntType) -> bool
impl Copy for EnvIntType
impl Eq for EnvIntType
impl StructuralEq for EnvIntType
impl StructuralPartialEq for EnvIntType
Auto Trait Implementations
impl RefUnwindSafe for EnvIntType
impl Send for EnvIntType
impl Sync for EnvIntType
impl Unpin for EnvIntType
impl UnwindSafe for EnvIntType
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