pub struct AuditLogEventActor {
pub actor_type: String,
pub email: String,
pub gid: String,
pub name: String,
}Expand description
The entity that triggered the event. Will typically be a user.
Fields§
§actor_type: StringThe type of actor.
Can be one of user, asana, asana_support, anonymous, or external_administrator.
email: StringThe email of the actor, if it is a user.
gid: StringGlobally unique identifier of the actor, if it is a user.
name: StringThe name of the actor, if it is a user.
Trait Implementations§
Source§impl Clone for AuditLogEventActor
impl Clone for AuditLogEventActor
Source§fn clone(&self) -> AuditLogEventActor
fn clone(&self) -> AuditLogEventActor
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AuditLogEventActor
impl Debug for AuditLogEventActor
Source§impl Default for AuditLogEventActor
impl Default for AuditLogEventActor
Source§fn default() -> AuditLogEventActor
fn default() -> AuditLogEventActor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogEventActor
impl<'de> Deserialize<'de> for AuditLogEventActor
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 Display for AuditLogEventActor
impl Display for AuditLogEventActor
Auto Trait Implementations§
impl Freeze for AuditLogEventActor
impl RefUnwindSafe for AuditLogEventActor
impl Send for AuditLogEventActor
impl Sync for AuditLogEventActor
impl Unpin for AuditLogEventActor
impl UnsafeUnpin for AuditLogEventActor
impl UnwindSafe for AuditLogEventActor
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