pub struct DataAccessEvent {
pub event_id: Option<String>,
pub event_time: Option<DateTime<Utc>>,
pub operation: Option<String>,
pub principal_email: Option<String>,
}Expand description
Details about a data access attempt made by a principal not authorized under applicable data security policy.
This type is not used in any activity, and only used as part of another schema.
Fields§
§event_id: Option<String>Unique identifier for data access event.
event_time: Option<DateTime<Utc>>Timestamp of data access event.
operation: Option<String>The operation performed by the principal to access the data.
principal_email: Option<String>The email address of the principal that accessed the data. The principal could be a user account, service account, Google group, or other.
Trait Implementations§
Source§impl Clone for DataAccessEvent
impl Clone for DataAccessEvent
Source§fn clone(&self) -> DataAccessEvent
fn clone(&self) -> DataAccessEvent
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 Debug for DataAccessEvent
impl Debug for DataAccessEvent
Source§impl Default for DataAccessEvent
impl Default for DataAccessEvent
Source§fn default() -> DataAccessEvent
fn default() -> DataAccessEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DataAccessEvent
impl<'de> Deserialize<'de> for DataAccessEvent
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 Serialize for DataAccessEvent
impl Serialize for DataAccessEvent
impl Part for DataAccessEvent
Auto Trait Implementations§
impl Freeze for DataAccessEvent
impl RefUnwindSafe for DataAccessEvent
impl Send for DataAccessEvent
impl Sync for DataAccessEvent
impl Unpin for DataAccessEvent
impl UnwindSafe for DataAccessEvent
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