pub struct AuditLogActor {
pub email: Option<String>,
pub id: Option<String>,
pub metadata: Option<Value>,
pub name: Option<String>,
pub _type: Option<String>,
}Expand description
AuditLogActor : The user or service that performed the action. Absent if the actor is unknown.
Fields§
§email: Option<String>Email address of the actor. Absent if unavailable.
id: Option<String>UUID of the actor.
metadata: Option<Value>Additional actor-specific data.
name: Option<String>Display name of the actor. Absent if unavailable.
_type: Option<String>Actor type (e.g. member, api_key, system).
Implementations§
Source§impl AuditLogActor
impl AuditLogActor
Sourcepub fn new() -> AuditLogActor
pub fn new() -> AuditLogActor
The user or service that performed the action. Absent if the actor is unknown.
Trait Implementations§
Source§impl Clone for AuditLogActor
impl Clone for AuditLogActor
Source§fn clone(&self) -> AuditLogActor
fn clone(&self) -> AuditLogActor
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 AuditLogActor
impl Debug for AuditLogActor
Source§impl Default for AuditLogActor
impl Default for AuditLogActor
Source§fn default() -> AuditLogActor
fn default() -> AuditLogActor
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogActor
impl<'de> Deserialize<'de> for AuditLogActor
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 AuditLogActor
impl PartialEq for AuditLogActor
Source§impl Serialize for AuditLogActor
impl Serialize for AuditLogActor
impl StructuralPartialEq for AuditLogActor
Auto Trait Implementations§
impl Freeze for AuditLogActor
impl RefUnwindSafe for AuditLogActor
impl Send for AuditLogActor
impl Sync for AuditLogActor
impl Unpin for AuditLogActor
impl UnsafeUnpin for AuditLogActor
impl UnwindSafe for AuditLogActor
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