pub enum AuditLogEventType {
Show 20 variants
ApiKeyCreated,
ApiKeyUpdated,
ApiKeyDeleted,
InviteSent,
InviteAccepted,
InviteDeleted,
LoginSucceeded,
LoginFailed,
LogoutSucceeded,
LogoutFailed,
OrganizationUpdated,
ProjectCreated,
ProjectUpdated,
ProjectArchived,
ServiceAccountCreated,
ServiceAccountUpdated,
ServiceAccountDeleted,
UserAdded,
UserUpdated,
UserDeleted,
}
Expand description
The event type.
Variants§
ApiKeyCreated
ApiKeyUpdated
ApiKeyDeleted
InviteSent
InviteAccepted
InviteDeleted
LoginSucceeded
LoginFailed
LogoutSucceeded
LogoutFailed
OrganizationUpdated
ProjectCreated
ProjectUpdated
ProjectArchived
ServiceAccountCreated
ServiceAccountUpdated
ServiceAccountDeleted
UserAdded
UserUpdated
UserDeleted
Trait Implementations§
Source§impl Debug for AuditLogEventType
impl Debug for AuditLogEventType
Source§impl<'de> Deserialize<'de> for AuditLogEventType
impl<'de> Deserialize<'de> for AuditLogEventType
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
Auto Trait Implementations§
impl Freeze for AuditLogEventType
impl RefUnwindSafe for AuditLogEventType
impl Send for AuditLogEventType
impl Sync for AuditLogEventType
impl Unpin for AuditLogEventType
impl UnwindSafe for AuditLogEventType
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