pub enum ParamType {
String,
Integer,
Float,
Bool,
FilePath,
Enum(Vec<String>),
}Expand description
Parameter type for template parameters.
Variants§
String
String value.
Integer
Integer value.
Float
Floating-point value.
Bool
Boolean value.
FilePath
File path value.
Enum(Vec<String>)
Enumeration (one of the provided options).
Trait Implementations§
impl StructuralPartialEq for ParamType
Auto Trait Implementations§
impl Freeze for ParamType
impl RefUnwindSafe for ParamType
impl Send for ParamType
impl Sync for ParamType
impl Unpin for ParamType
impl UnsafeUnpin for ParamType
impl UnwindSafe for ParamType
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