#[repr(i32)]
#[non_exhaustive]
pub enum ParmType {
Show 18 variants
Int,
Multiparmlist,
Toggle,
Button,
Float,
Color,
String,
PathFile,
PathFileGeo,
PathFileImage,
Node,
Folderlist,
FolderlistRadio,
Folder,
Label,
Separator,
PathFileDir,
Max,
}
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
Multiparmlist
Toggle
Button
Float
Color
String
PathFile
PathFileGeo
PathFileImage
Node
Folderlist
FolderlistRadio
Folder
Label
Separator
PathFileDir
Max
Implementations
sourceimpl ParmType
impl ParmType
pub const FloatStart: ParmType = ParmType::Float
sourceimpl ParmType
impl ParmType
pub const StringStart: ParmType = ParmType::String
sourceimpl ParmType
impl ParmType
pub const ContainerStart: ParmType = ParmType::Folderlist
sourceimpl ParmType
impl ParmType
pub const ContainerEnd: ParmType = ParmType::FolderlistRadio
sourceimpl ParmType
impl ParmType
pub const NonvalueStart: ParmType = ParmType::Folder
sourceimpl ParmType
impl ParmType
pub const NonvalueEnd: ParmType = ParmType::Separator
Trait Implementations
impl Copy for ParmType
impl Eq for ParmType
impl StructuralEq for ParmType
impl StructuralPartialEq for ParmType
Auto Trait Implementations
impl RefUnwindSafe for ParmType
impl Send for ParmType
impl Sync for ParmType
impl Unpin for ParmType
impl UnwindSafe for ParmType
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