pub struct AuditLogEventResource {
pub email: String,
pub gid: String,
pub name: Option<String>,
pub resource_subtype: String,
pub resource_type: String,
}Expand description
The primary object that was affected by this event.
Fields§
§email: StringThe email of the resource, if applicable.
gid: StringGlobally unique identifier of the resource.
name: Option<String>The name of the resource.
resource_subtype: StringThe subtype of resource. Most resources will not have a subtype.
resource_type: StringThe type of resource.
Trait Implementations§
Source§impl Clone for AuditLogEventResource
impl Clone for AuditLogEventResource
Source§fn clone(&self) -> AuditLogEventResource
fn clone(&self) -> AuditLogEventResource
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 AuditLogEventResource
impl Debug for AuditLogEventResource
Source§impl Default for AuditLogEventResource
impl Default for AuditLogEventResource
Source§fn default() -> AuditLogEventResource
fn default() -> AuditLogEventResource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditLogEventResource
impl<'de> Deserialize<'de> for AuditLogEventResource
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 AuditLogEventResource
impl Display for AuditLogEventResource
Auto Trait Implementations§
impl Freeze for AuditLogEventResource
impl RefUnwindSafe for AuditLogEventResource
impl Send for AuditLogEventResource
impl Sync for AuditLogEventResource
impl Unpin for AuditLogEventResource
impl UnsafeUnpin for AuditLogEventResource
impl UnwindSafe for AuditLogEventResource
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