#[non_exhaustive]pub enum EffectClass {
Pure,
ReadOnly,
IdempotentWrite,
NonIdempotentWrite,
Destructive,
Unknown,
}Expand description
The external-effect behavior of a capability.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Pure
No externally visible effect.
ReadOnly
Reads external state without modifying it.
IdempotentWrite
Writes external state and is safe to repeat with the same key.
NonIdempotentWrite
Writes external state and may not be safe to repeat.
Destructive
May destroy or irreversibly mutate state.
Unknown
Effect behavior is unknown.
Trait Implementations§
Source§impl Clone for EffectClass
impl Clone for EffectClass
Source§fn clone(&self) -> EffectClass
fn clone(&self) -> EffectClass
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 moreimpl Copy for EffectClass
Source§impl Debug for EffectClass
impl Debug for EffectClass
Source§impl<'de> Deserialize<'de> for EffectClass
impl<'de> Deserialize<'de> for EffectClass
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
impl Eq for EffectClass
Source§impl PartialEq for EffectClass
impl PartialEq for EffectClass
Source§impl Serialize for EffectClass
impl Serialize for EffectClass
impl StructuralPartialEq for EffectClass
Auto Trait Implementations§
impl Freeze for EffectClass
impl RefUnwindSafe for EffectClass
impl Send for EffectClass
impl Sync for EffectClass
impl Unpin for EffectClass
impl UnsafeUnpin for EffectClass
impl UnwindSafe for EffectClass
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