pub enum AuditLogActorType {
Session,
ApiKey,
}
Expand description
The type of actor. Is either session
or api_key
.
Variants§
Trait Implementations§
Source§impl Clone for AuditLogActorType
impl Clone for AuditLogActorType
Source§fn clone(&self) -> AuditLogActorType
fn clone(&self) -> AuditLogActorType
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 AuditLogActorType
impl Debug for AuditLogActorType
Source§impl<'de> Deserialize<'de> for AuditLogActorType
impl<'de> Deserialize<'de> for AuditLogActorType
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 AuditLogActorType
impl PartialEq for AuditLogActorType
Source§impl Serialize for AuditLogActorType
impl Serialize for AuditLogActorType
impl Copy for AuditLogActorType
impl StructuralPartialEq for AuditLogActorType
Auto Trait Implementations§
impl Freeze for AuditLogActorType
impl RefUnwindSafe for AuditLogActorType
impl Send for AuditLogActorType
impl Sync for AuditLogActorType
impl Unpin for AuditLogActorType
impl UnwindSafe for AuditLogActorType
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