pub struct AuditTrailEvent {
pub message_audit_trail_event_reference: String,
pub message_audit_trail_event_type: String,
pub date_time: DateTime<Utc>,
pub responsible_party_reference: Option<String>,
pub attributes: Option<AttributeMap>,
pub extensions: Option<Extensions>,
pub comments: Option<Vec<Comment>>,
}
Fields§
§message_audit_trail_event_reference: String
§message_audit_trail_event_type: String
§date_time: DateTime<Utc>
§responsible_party_reference: Option<String>
§attributes: Option<AttributeMap>
All XML attributes (standard and custom)
extensions: Option<Extensions>
Extensions for individual audit trail events
comments: Option<Vec<Comment>>
Comments associated with this audit trail event
Trait Implementations§
Source§impl Clone for AuditTrailEvent
impl Clone for AuditTrailEvent
Source§fn clone(&self) -> AuditTrailEvent
fn clone(&self) -> AuditTrailEvent
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 AuditTrailEvent
impl Debug for AuditTrailEvent
Source§impl<'de> Deserialize<'de> for AuditTrailEvent
impl<'de> Deserialize<'de> for AuditTrailEvent
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 AuditTrailEvent
impl RefUnwindSafe for AuditTrailEvent
impl Send for AuditTrailEvent
impl Sync for AuditTrailEvent
impl Unpin for AuditTrailEvent
impl UnwindSafe for AuditTrailEvent
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