pub enum MemoryAction {
Add,
Update,
Delete,
None,
}Expand description
The type of memory event recorded in the audit trail.
Variants§
Trait Implementations§
Source§impl Clone for MemoryAction
impl Clone for MemoryAction
Source§fn clone(&self) -> MemoryAction
fn clone(&self) -> MemoryAction
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 MemoryAction
impl Debug for MemoryAction
Source§impl<'de> Deserialize<'de> for MemoryAction
impl<'de> Deserialize<'de> for MemoryAction
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 Display for MemoryAction
impl Display for MemoryAction
Source§impl PartialEq for MemoryAction
impl PartialEq for MemoryAction
Source§impl Serialize for MemoryAction
impl Serialize for MemoryAction
impl Copy for MemoryAction
impl Eq for MemoryAction
impl StructuralPartialEq for MemoryAction
Auto Trait Implementations§
impl Freeze for MemoryAction
impl RefUnwindSafe for MemoryAction
impl Send for MemoryAction
impl Sync for MemoryAction
impl Unpin for MemoryAction
impl UnsafeUnpin for MemoryAction
impl UnwindSafe for MemoryAction
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