pub enum RollbackStepType {
Delete,
Restore,
Update,
RebuildIndex,
Custom(String),
}Expand description
Types of rollback steps
Variants§
Delete
Delete entries
Restore
Restore entries
Update
Update entries
RebuildIndex
Rebuild index
Custom(String)
Custom operation
Trait Implementations§
Source§impl Clone for RollbackStepType
impl Clone for RollbackStepType
Source§fn clone(&self) -> RollbackStepType
fn clone(&self) -> RollbackStepType
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 RollbackStepType
impl Debug for RollbackStepType
Source§impl<'de> Deserialize<'de> for RollbackStepType
impl<'de> Deserialize<'de> for RollbackStepType
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
Auto Trait Implementations§
impl Freeze for RollbackStepType
impl RefUnwindSafe for RollbackStepType
impl Send for RollbackStepType
impl Sync for RollbackStepType
impl Unpin for RollbackStepType
impl UnwindSafe for RollbackStepType
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