pub enum RetentionUse {
ReadOnly,
ProviderProjection,
Validation,
Delivery,
Replay,
}Expand description
Enumerates the finite retention use cases. Serialized names are part of the SDK contract; update fixtures when variants change.
Variants§
ReadOnly
Use this variant when the contract needs to represent read only; selecting it has no side effect by itself.
ProviderProjection
Use this variant when the contract needs to represent provider projection; selecting it has no side effect by itself.
Validation
Use this variant when the contract needs to represent validation; selecting it has no side effect by itself.
Delivery
Use this variant when the contract needs to represent delivery; selecting it has no side effect by itself.
Replay
Use this variant when the contract needs to represent replay; selecting it has no side effect by itself.
Trait Implementations§
Source§impl Clone for RetentionUse
impl Clone for RetentionUse
Source§fn clone(&self) -> RetentionUse
fn clone(&self) -> RetentionUse
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 RetentionUse
impl Debug for RetentionUse
Source§impl<'de> Deserialize<'de> for RetentionUse
impl<'de> Deserialize<'de> for RetentionUse
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 RetentionUse
impl PartialEq for RetentionUse
Source§fn eq(&self, other: &RetentionUse) -> bool
fn eq(&self, other: &RetentionUse) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RetentionUse
impl Serialize for RetentionUse
impl Eq for RetentionUse
impl StructuralPartialEq for RetentionUse
Auto Trait Implementations§
impl Freeze for RetentionUse
impl RefUnwindSafe for RetentionUse
impl Send for RetentionUse
impl Sync for RetentionUse
impl Unpin for RetentionUse
impl UnsafeUnpin for RetentionUse
impl UnwindSafe for RetentionUse
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