#[non_exhaustive]#[repr(i32)]pub enum EnvIntType {
EnvintInvalid = -1,
HoudiniMajor = 100,
HoudiniMinor = 110,
HoudiniBuild = 120,
HoudiniPatch = 130,
EngineMajor = 200,
EngineMinor = 210,
EngineApi = 220,
EnvintMax = 221,
}
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 = -1
HoudiniMajor = 100
HoudiniMinor = 110
HoudiniBuild = 120
HoudiniPatch = 130
EngineMajor = 200
EngineMinor = 210
EngineApi = 220
EnvintMax = 221
Trait Implementations§
Source§impl Clone for EnvIntType
impl Clone for EnvIntType
Source§fn clone(&self) -> EnvIntType
fn clone(&self) -> EnvIntType
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 EnvIntType
impl Debug for EnvIntType
Source§impl Hash for EnvIntType
impl Hash for EnvIntType
Source§impl PartialEq for EnvIntType
impl PartialEq for EnvIntType
impl Copy for EnvIntType
impl Eq for EnvIntType
impl StructuralPartialEq for EnvIntType
Auto Trait Implementations§
impl Freeze for EnvIntType
impl RefUnwindSafe for EnvIntType
impl Send for EnvIntType
impl Sync for EnvIntType
impl Unpin for EnvIntType
impl UnwindSafe for EnvIntType
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