pub enum ComputeRepresentationVariableValue {
Double(f64),
Duration(Duration),
Integer(i32),
StringSet(BTreeSet<String>),
Timestamp(Timestamp),
FunctionRid(FunctionRid),
Series(ChannelLocator),
ExternalVariableReference(String),
Unknown(Unknown),
}
Variants§
Double(f64)
Duration(Duration)
Integer(i32)
StringSet(BTreeSet<String>)
Timestamp(Timestamp)
FunctionRid(FunctionRid)
Series(ChannelLocator)
ExternalVariableReference(String)
Unknown(Unknown)
An unknown variant.
Trait Implementations§
Source§impl Clone for ComputeRepresentationVariableValue
impl Clone for ComputeRepresentationVariableValue
Source§fn clone(&self) -> ComputeRepresentationVariableValue
fn clone(&self) -> ComputeRepresentationVariableValue
Returns a copy 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<'de> Deserialize<'de> for ComputeRepresentationVariableValue
impl<'de> Deserialize<'de> for ComputeRepresentationVariableValue
Source§fn deserialize<D>(d: D) -> Result<ComputeRepresentationVariableValue, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(d: D) -> Result<ComputeRepresentationVariableValue, D::Error>where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Ord for ComputeRepresentationVariableValue
impl Ord for ComputeRepresentationVariableValue
Source§impl PartialOrd for ComputeRepresentationVariableValue
impl PartialOrd for ComputeRepresentationVariableValue
impl Eq for ComputeRepresentationVariableValue
Auto Trait Implementations§
impl Freeze for ComputeRepresentationVariableValue
impl RefUnwindSafe for ComputeRepresentationVariableValue
impl Send for ComputeRepresentationVariableValue
impl Sync for ComputeRepresentationVariableValue
impl Unpin for ComputeRepresentationVariableValue
impl UnwindSafe for ComputeRepresentationVariableValue
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.