pub enum CouplingScope {
Full,
StateOnly,
IntentOnly,
ObservationalOnly,
}Expand description
Which aspects of state are affected by coupling?
Variants§
Full
Full coupling: state, intent, and commitment visibility
StateOnly
Only state is shared
IntentOnly
Only intent is shared
ObservationalOnly
Only observation, no influence
Trait Implementations§
Source§impl Clone for CouplingScope
impl Clone for CouplingScope
Source§fn clone(&self) -> CouplingScope
fn clone(&self) -> CouplingScope
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 CouplingScope
impl Debug for CouplingScope
Source§impl<'de> Deserialize<'de> for CouplingScope
impl<'de> Deserialize<'de> for CouplingScope
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 PartialEq for CouplingScope
impl PartialEq for CouplingScope
Source§impl Serialize for CouplingScope
impl Serialize for CouplingScope
impl Copy for CouplingScope
impl Eq for CouplingScope
impl StructuralPartialEq for CouplingScope
Auto Trait Implementations§
impl Freeze for CouplingScope
impl RefUnwindSafe for CouplingScope
impl Send for CouplingScope
impl Sync for CouplingScope
impl Unpin for CouplingScope
impl UnwindSafe for CouplingScope
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§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.