pub enum CommitParticipation {
Durable,
LiveOnly,
}Expand description
Store commit participation class.
Variants§
Durable
Store mutations participate in the durable commit path.
LiveOnly
Store mutations are live-only side effects.
Trait Implementations§
Source§impl Clone for CommitParticipation
impl Clone for CommitParticipation
Source§fn clone(&self) -> CommitParticipation
fn clone(&self) -> CommitParticipation
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 CommitParticipation
impl Debug for CommitParticipation
Source§impl PartialEq for CommitParticipation
impl PartialEq for CommitParticipation
Source§fn eq(&self, other: &CommitParticipation) -> bool
fn eq(&self, other: &CommitParticipation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CommitParticipation
impl Serialize for CommitParticipation
impl Copy for CommitParticipation
impl Eq for CommitParticipation
impl StructuralPartialEq for CommitParticipation
Auto Trait Implementations§
impl Freeze for CommitParticipation
impl RefUnwindSafe for CommitParticipation
impl Send for CommitParticipation
impl Sync for CommitParticipation
impl Unpin for CommitParticipation
impl UnsafeUnpin for CommitParticipation
impl UnwindSafe for CommitParticipation
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