pub struct PythonParam {
pub id: i32,
pub value_type: i32,
pub value: PythonParamValue,
}Expand description
A single script parameter (id + typed value).
Fields§
§id: i32§value_type: i32§value: PythonParamValueTrait Implementations§
Source§impl Clone for PythonParam
impl Clone for PythonParam
Source§fn clone(&self) -> PythonParam
fn clone(&self) -> PythonParam
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 PythonParam
impl RefUnwindSafe for PythonParam
impl Send for PythonParam
impl Sync for PythonParam
impl Unpin for PythonParam
impl UnsafeUnpin for PythonParam
impl UnwindSafe for PythonParam
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