pub struct Event {
pub id: i64,
pub entity_type: String,
pub entity_id: String,
pub event_type: EventType,
pub actor: String,
pub old_value: Option<String>,
pub new_value: Option<String>,
pub comment: Option<String>,
pub created_at: i64,
}Expand description
An audit event record.
Fields§
§id: i64§entity_type: String§entity_id: String§event_type: EventType§actor: String§old_value: Option<String>§new_value: Option<String>§comment: Option<String>§created_at: i64Implementations§
Source§impl Event
impl Event
Sourcepub fn new(
entity_type: &str,
entity_id: &str,
event_type: EventType,
actor: &str,
) -> Self
pub fn new( entity_type: &str, entity_id: &str, event_type: EventType, actor: &str, ) -> Self
Create a new event (id will be assigned by database).
Sourcepub fn with_values(self, old: Option<String>, new: Option<String>) -> Self
pub fn with_values(self, old: Option<String>, new: Option<String>) -> Self
Add old/new values for field change tracking.
Sourcepub fn with_comment(self, comment: &str) -> Self
pub fn with_comment(self, comment: &str) -> Self
Add a comment to the event.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more