#[non_exhaustive]#[repr(i32)]pub enum PrmScriptType {
Show 47 variants
Int = 0,
Float = 1,
Angle = 2,
String = 3,
File = 4,
Directory = 5,
Image = 6,
Geometry = 7,
Toggle = 8,
Button = 9,
Vector2 = 10,
Vector3 = 11,
Vector4 = 12,
Intvector2 = 13,
Intvector3 = 14,
Intvector4 = 15,
Uv = 16,
Uvw = 17,
Dir = 18,
Color = 19,
Color4 = 20,
Huecircle = 21,
Oppath = 22,
Oplist = 23,
Object = 24,
Objectlist = 25,
Render = 26,
Separator = 27,
Data = 28,
Dict = 29,
Label = 30,
Rgbamask = 31,
Ordinal = 32,
Flt = 33,
Rgb = 34,
Log = 35,
IntLog = 36,
TypeData = 37,
Minmax = 38,
IntMinmax = 39,
Startend = 40,
Buttonstrip = 41,
Iconstrip = 42,
Groupradio = 1_000,
Groupcollapsible = 1_001,
Groupsimple = 1_002,
Group = 1_003,
}
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
Float = 1
Angle = 2
String = 3
File = 4
Directory = 5
Image = 6
Geometry = 7
Toggle = 8
Button = 9
Vector2 = 10
Vector3 = 11
Vector4 = 12
Intvector2 = 13
Intvector3 = 14
Intvector4 = 15
Uv = 16
Uvw = 17
Dir = 18
Color = 19
Color4 = 20
Huecircle = 21
Oppath = 22
Oplist = 23
Object = 24
Objectlist = 25
Render = 26
Separator = 27
Data = 28
Dict = 29
Label = 30
Rgbamask = 31
Ordinal = 32
Flt = 33
Rgb = 34
Log = 35
IntLog = 36
TypeData = 37
Minmax = 38
IntMinmax = 39
Startend = 40
Buttonstrip = 41
Iconstrip = 42
Groupradio = 1_000
Groupcollapsible = 1_001
Groupsimple = 1_002
Group = 1_003
Trait Implementations§
Source§impl Clone for PrmScriptType
impl Clone for PrmScriptType
Source§fn clone(&self) -> PrmScriptType
fn clone(&self) -> PrmScriptType
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 PrmScriptType
impl Debug for PrmScriptType
Source§impl Hash for PrmScriptType
impl Hash for PrmScriptType
Source§impl PartialEq for PrmScriptType
impl PartialEq for PrmScriptType
impl Copy for PrmScriptType
impl Eq for PrmScriptType
impl StructuralPartialEq for PrmScriptType
Auto Trait Implementations§
impl Freeze for PrmScriptType
impl RefUnwindSafe for PrmScriptType
impl Send for PrmScriptType
impl Sync for PrmScriptType
impl Unpin for PrmScriptType
impl UnwindSafe for PrmScriptType
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