pub enum RawCommandArgument {
Float(f64),
String(String),
}
Variants§
Trait Implementations§
Source§impl Clone for RawCommandArgument
impl Clone for RawCommandArgument
Source§fn clone(&self) -> RawCommandArgument
fn clone(&self) -> RawCommandArgument
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 RawCommandArgument
impl Debug for RawCommandArgument
Source§impl Display for RawCommandArgument
impl Display for RawCommandArgument
Source§impl<'s> From<&'s str> for RawCommandArgument
impl<'s> From<&'s str> for RawCommandArgument
Source§impl From<String> for RawCommandArgument
impl From<String> for RawCommandArgument
Source§impl From<f64> for RawCommandArgument
impl From<f64> for RawCommandArgument
Source§impl PartialEq for RawCommandArgument
impl PartialEq for RawCommandArgument
Source§impl PartialOrd for RawCommandArgument
impl PartialOrd for RawCommandArgument
Source§impl Serialize for RawCommandArgument
impl Serialize for RawCommandArgument
impl StructuralPartialEq for RawCommandArgument
Auto Trait Implementations§
impl Freeze for RawCommandArgument
impl RefUnwindSafe for RawCommandArgument
impl Send for RawCommandArgument
impl Sync for RawCommandArgument
impl Unpin for RawCommandArgument
impl UnwindSafe for RawCommandArgument
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