pub struct MemoryEventMetadata {
pub created_at: Option<String>,
pub updated_at: Option<String>,
pub is_deleted: bool,
pub actor_id: Option<String>,
pub role: Option<String>,
}Expand description
Optional audit metadata attached to a history event.
Fields§
§created_at: Option<String>§updated_at: Option<String>§is_deleted: bool§actor_id: Option<String>§role: Option<String>Trait Implementations§
Source§impl Clone for MemoryEventMetadata
impl Clone for MemoryEventMetadata
Source§fn clone(&self) -> MemoryEventMetadata
fn clone(&self) -> MemoryEventMetadata
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 MemoryEventMetadata
impl Debug for MemoryEventMetadata
Source§impl Default for MemoryEventMetadata
impl Default for MemoryEventMetadata
Source§fn default() -> MemoryEventMetadata
fn default() -> MemoryEventMetadata
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for MemoryEventMetadata
impl RefUnwindSafe for MemoryEventMetadata
impl Send for MemoryEventMetadata
impl Sync for MemoryEventMetadata
impl Unpin for MemoryEventMetadata
impl UnsafeUnpin for MemoryEventMetadata
impl UnwindSafe for MemoryEventMetadata
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