#[non_exhaustive]#[repr(i32)]pub enum ParmType {
Show 18 variants
Int = 0,
Multiparmlist = 1,
Toggle = 2,
Button = 3,
Float = 4,
Color = 5,
String = 6,
PathFile = 7,
PathFileGeo = 8,
PathFileImage = 9,
Node = 10,
Folderlist = 11,
FolderlistRadio = 12,
Folder = 13,
Label = 14,
Separator = 15,
PathFileDir = 16,
Max = 17,
}
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.
Int = 0
Multiparmlist = 1
Toggle = 2
Button = 3
Float = 4
Color = 5
String = 6
PathFile = 7
PathFileGeo = 8
PathFileImage = 9
Node = 10
Folderlist = 11
FolderlistRadio = 12
Folder = 13
Label = 14
Separator = 15
PathFileDir = 16
Max = 17
Implementations§
Trait Implementations§
impl Copy for ParmType
impl Eq for ParmType
impl StructuralPartialEq for ParmType
Auto Trait Implementations§
impl Freeze for ParmType
impl RefUnwindSafe for ParmType
impl Send for ParmType
impl Sync for ParmType
impl Unpin for ParmType
impl UnwindSafe for ParmType
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