pub struct GetAuditLogsResponseTrailsItem {
pub action: Option<String>,
pub data: Option<GetAuditLogsResponseTrailsItemData>,
pub id: Option<f64>,
pub ip: Option<String>,
pub message: Option<String>,
pub timestamp: Option<String>,
pub user_agent: Option<String>,
}
Fields§
§action: Option<String>
The action performed by the user.
data: Option<GetAuditLogsResponseTrailsItemData>
§id: Option<f64>
The audit event’s ID.
ip: Option<String>
The IP address of the user that performed the action.
message: Option<String>
The audit event’s description.
timestamp: Option<String>
The date and time at which the event occurred.
user_agent: Option<String>
The user agent information.
Trait Implementations§
Source§impl Clone for GetAuditLogsResponseTrailsItem
impl Clone for GetAuditLogsResponseTrailsItem
Source§fn clone(&self) -> GetAuditLogsResponseTrailsItem
fn clone(&self) -> GetAuditLogsResponseTrailsItem
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<'de> Deserialize<'de> for GetAuditLogsResponseTrailsItem
impl<'de> Deserialize<'de> for GetAuditLogsResponseTrailsItem
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 PartialEq for GetAuditLogsResponseTrailsItem
impl PartialEq for GetAuditLogsResponseTrailsItem
Source§fn eq(&self, other: &GetAuditLogsResponseTrailsItem) -> bool
fn eq(&self, other: &GetAuditLogsResponseTrailsItem) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetAuditLogsResponseTrailsItem
Auto Trait Implementations§
impl Freeze for GetAuditLogsResponseTrailsItem
impl RefUnwindSafe for GetAuditLogsResponseTrailsItem
impl Send for GetAuditLogsResponseTrailsItem
impl Sync for GetAuditLogsResponseTrailsItem
impl Unpin for GetAuditLogsResponseTrailsItem
impl UnwindSafe for GetAuditLogsResponseTrailsItem
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