pub enum ObservationRole {
Candidate,
Selected,
Target,
Signal,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for ObservationRole
impl Clone for ObservationRole
Source§fn clone(&self) -> ObservationRole
fn clone(&self) -> ObservationRole
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 ObservationRole
impl Debug for ObservationRole
Source§impl<'de> Deserialize<'de> for ObservationRole
impl<'de> Deserialize<'de> for ObservationRole
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ObservationRole, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ObservationRole, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ObservationRole
impl Hash for ObservationRole
Source§impl PartialEq for ObservationRole
impl PartialEq for ObservationRole
Source§fn eq(&self, other: &ObservationRole) -> bool
fn eq(&self, other: &ObservationRole) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ObservationRole
impl Serialize for ObservationRole
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for ObservationRole
impl Eq for ObservationRole
impl StructuralPartialEq for ObservationRole
Auto Trait Implementations§
impl Freeze for ObservationRole
impl RefUnwindSafe for ObservationRole
impl Send for ObservationRole
impl Sync for ObservationRole
impl Unpin for ObservationRole
impl UnsafeUnpin for ObservationRole
impl UnwindSafe for ObservationRole
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> 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.