pub struct StateTransitionAuditEvent {
pub atom_id: String,
pub previous_state: AtomState,
pub target_state: AtomState,
pub reason: String,
pub actor: Option<String>,
pub transitioned_unix_seconds: u64,
}Fields§
§atom_id: String§previous_state: AtomState§target_state: AtomState§reason: String§actor: Option<String>§transitioned_unix_seconds: u64Trait Implementations§
Source§impl Clone for StateTransitionAuditEvent
impl Clone for StateTransitionAuditEvent
Source§fn clone(&self) -> StateTransitionAuditEvent
fn clone(&self) -> StateTransitionAuditEvent
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 StateTransitionAuditEvent
impl Debug for StateTransitionAuditEvent
Source§impl<'de> Deserialize<'de> for StateTransitionAuditEvent
impl<'de> Deserialize<'de> for StateTransitionAuditEvent
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 StateTransitionAuditEvent
impl RefUnwindSafe for StateTransitionAuditEvent
impl Send for StateTransitionAuditEvent
impl Sync for StateTransitionAuditEvent
impl Unpin for StateTransitionAuditEvent
impl UnsafeUnpin for StateTransitionAuditEvent
impl UnwindSafe for StateTransitionAuditEvent
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