pub struct GetAuditLogsResponseTrailsItemData {
pub actor: Option<GetAuditLogsResponseTrailsItemDataActor>,
pub team: Option<GetAuditLogsResponseTrailsItemDataTeam>,
pub user: Option<GetAuditLogsResponseTrailsItemDataUser>,
pub variables: Option<Value>,
}
Fields§
§actor: Option<GetAuditLogsResponseTrailsItemDataActor>
Information about the user who preformed the audit event.
team: Option<GetAuditLogsResponseTrailsItemDataTeam>
The user’s team information.
user: Option<GetAuditLogsResponseTrailsItemDataUser>
Information about the user.
variables: Option<Value>
Trait Implementations§
Source§impl Clone for GetAuditLogsResponseTrailsItemData
impl Clone for GetAuditLogsResponseTrailsItemData
Source§fn clone(&self) -> GetAuditLogsResponseTrailsItemData
fn clone(&self) -> GetAuditLogsResponseTrailsItemData
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 GetAuditLogsResponseTrailsItemData
impl<'de> Deserialize<'de> for GetAuditLogsResponseTrailsItemData
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 GetAuditLogsResponseTrailsItemData
impl PartialEq for GetAuditLogsResponseTrailsItemData
Source§fn eq(&self, other: &GetAuditLogsResponseTrailsItemData) -> bool
fn eq(&self, other: &GetAuditLogsResponseTrailsItemData) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetAuditLogsResponseTrailsItemData
Auto Trait Implementations§
impl Freeze for GetAuditLogsResponseTrailsItemData
impl RefUnwindSafe for GetAuditLogsResponseTrailsItemData
impl Send for GetAuditLogsResponseTrailsItemData
impl Sync for GetAuditLogsResponseTrailsItemData
impl Unpin for GetAuditLogsResponseTrailsItemData
impl UnwindSafe for GetAuditLogsResponseTrailsItemData
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