pub enum ActiveParameter {
Int(u32),
Null,
}Variants§
Trait Implementations§
Source§impl Clone for ActiveParameter
impl Clone for ActiveParameter
Source§fn clone(&self) -> ActiveParameter
fn clone(&self) -> ActiveParameter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ActiveParameter
impl Debug for ActiveParameter
Source§impl<'de> Deserialize<'de> for ActiveParameter
impl<'de> Deserialize<'de> for ActiveParameter
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<()> for ActiveParameter
impl From<()> for ActiveParameter
Source§impl From<u32> for ActiveParameter
impl From<u32> for ActiveParameter
Source§impl Hash for ActiveParameter
impl Hash for ActiveParameter
Source§impl PartialEq for ActiveParameter
impl PartialEq for ActiveParameter
Source§fn eq(&self, other: &ActiveParameter) -> bool
fn eq(&self, other: &ActiveParameter) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ActiveParameter
impl Serialize for ActiveParameter
impl Copy for ActiveParameter
impl Eq for ActiveParameter
impl StructuralPartialEq for ActiveParameter
Auto Trait Implementations§
impl Freeze for ActiveParameter
impl RefUnwindSafe for ActiveParameter
impl Send for ActiveParameter
impl Sync for ActiveParameter
impl Unpin for ActiveParameter
impl UnsafeUnpin for ActiveParameter
impl UnwindSafe for ActiveParameter
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