pub enum PythonParamValue {
Int(i32),
Float(f32),
Bool(bool),
String(String),
Key(Option<Uoid>),
None,
}Expand description
Parsed parameter from a plPythonFileMod. C++ ref: plPythonParameter.h:59-475
Variants§
Trait Implementations§
Source§impl Clone for PythonParamValue
impl Clone for PythonParamValue
Source§fn clone(&self) -> PythonParamValue
fn clone(&self) -> PythonParamValue
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 moreAuto Trait Implementations§
impl Freeze for PythonParamValue
impl RefUnwindSafe for PythonParamValue
impl Send for PythonParamValue
impl Sync for PythonParamValue
impl Unpin for PythonParamValue
impl UnsafeUnpin for PythonParamValue
impl UnwindSafe for PythonParamValue
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