pub enum StoreRelationSourceCapability {
DurableSource,
LiveSource,
}Expand description
Strong relation source capability for a store.
Variants§
DurableSource
Source rows can own durable relation integrity.
LiveSource
Source rows can participate in live relation validation.
Trait Implementations§
Source§impl Clone for StoreRelationSourceCapability
impl Clone for StoreRelationSourceCapability
Source§fn clone(&self) -> StoreRelationSourceCapability
fn clone(&self) -> StoreRelationSourceCapability
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 StoreRelationSourceCapability
Source§impl Default for StoreRelationSourceCapability
impl Default for StoreRelationSourceCapability
Source§fn default() -> StoreRelationSourceCapability
fn default() -> StoreRelationSourceCapability
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreRelationSourceCapability
impl<'de> Deserialize<'de> for StoreRelationSourceCapability
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 StoreRelationSourceCapability
Source§impl PartialEq for StoreRelationSourceCapability
impl PartialEq for StoreRelationSourceCapability
Source§fn eq(&self, other: &StoreRelationSourceCapability) -> bool
fn eq(&self, other: &StoreRelationSourceCapability) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StoreRelationSourceCapability
Auto Trait Implementations§
impl Freeze for StoreRelationSourceCapability
impl RefUnwindSafe for StoreRelationSourceCapability
impl Send for StoreRelationSourceCapability
impl Sync for StoreRelationSourceCapability
impl Unpin for StoreRelationSourceCapability
impl UnsafeUnpin for StoreRelationSourceCapability
impl UnwindSafe for StoreRelationSourceCapability
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