pub enum AbstractPropertyValueV0 {
Bottom {
property_name: String,
},
Exact {
property_name: String,
value: String,
pseudo_state: Option<String>,
},
FiniteSet {
property_name: String,
values: Vec<String>,
pseudo_states: Vec<String>,
},
CustomPropertyReference {
property_name: String,
custom_property_name: String,
pseudo_state: Option<String>,
},
Top {
property_name: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for AbstractPropertyValueV0
impl Clone for AbstractPropertyValueV0
Source§fn clone(&self) -> AbstractPropertyValueV0
fn clone(&self) -> AbstractPropertyValueV0
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 AbstractPropertyValueV0
impl Debug for AbstractPropertyValueV0
impl Eq for AbstractPropertyValueV0
Source§impl PartialEq for AbstractPropertyValueV0
impl PartialEq for AbstractPropertyValueV0
Source§fn eq(&self, other: &AbstractPropertyValueV0) -> bool
fn eq(&self, other: &AbstractPropertyValueV0) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AbstractPropertyValueV0
impl Serialize for AbstractPropertyValueV0
impl StructuralPartialEq for AbstractPropertyValueV0
Auto Trait Implementations§
impl Freeze for AbstractPropertyValueV0
impl RefUnwindSafe for AbstractPropertyValueV0
impl Send for AbstractPropertyValueV0
impl Sync for AbstractPropertyValueV0
impl Unpin for AbstractPropertyValueV0
impl UnsafeUnpin for AbstractPropertyValueV0
impl UnwindSafe for AbstractPropertyValueV0
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.