pub struct AuditLog {
pub id: Option<i32>,
pub username: Option<String>,
pub resource: Option<String>,
pub resource_type: Option<String>,
pub operation: Option<String>,
pub op_time: Option<String>,
}Fields§
§id: Option<i32>The ID of the audit log entry.
username: Option<String>Username of the user in this log entry.
resource: Option<String>Name of the repository in this log entry.
resource_type: Option<String>Tag of the repository in this log entry.
operation: Option<String>The operation against the repository in this log entry.
op_time: Option<String>The time when this operation is triggered.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AuditLog
impl<'de> Deserialize<'de> for AuditLog
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
impl StructuralPartialEq for AuditLog
Auto Trait Implementations§
impl Freeze for AuditLog
impl RefUnwindSafe for AuditLog
impl Send for AuditLog
impl Sync for AuditLog
impl Unpin for AuditLog
impl UnwindSafe for AuditLog
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