pub enum SystemParamValue {
Float(f64),
Int(i64),
Bool(bool),
String(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for SystemParamValue
impl Clone for SystemParamValue
Source§fn clone(&self) -> SystemParamValue
fn clone(&self) -> SystemParamValue
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 SystemParamValue
impl Debug for SystemParamValue
Source§impl PartialEq for SystemParamValue
impl PartialEq for SystemParamValue
impl StructuralPartialEq for SystemParamValue
Auto Trait Implementations§
impl Freeze for SystemParamValue
impl RefUnwindSafe for SystemParamValue
impl Send for SystemParamValue
impl Sync for SystemParamValue
impl Unpin for SystemParamValue
impl UnwindSafe for SystemParamValue
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