pub struct AccountSystemLogEntry {
pub id: Option<i32>,
pub time: Option<String>,
pub originator: Option<String>,
pub api_key_name: Option<String>,
pub resource: Option<String>,
pub resource_id: Option<i32>,
pub type: Option<String>,
pub description: Option<String>,
}Expand description
Account system log entry
Fields§
§id: Option<i32>Unique log entry ID.
time: Option<String>Timestamp the event was recorded (ISO-8601).
originator: Option<String>Originator of the event (user, system, etc.).
api_key_name: Option<String>Name of the API key that initiated the action, if any.
resource: Option<String>Resource category the event applies to (e.g. "database").
resource_id: Option<i32>Resource ID associated with this log entry
type: Option<String>Event type (e.g. "info", "warning", "error").
description: Option<String>Human-readable description of the event.
Trait Implementations§
Source§impl Clone for AccountSystemLogEntry
impl Clone for AccountSystemLogEntry
Source§fn clone(&self) -> AccountSystemLogEntry
fn clone(&self) -> AccountSystemLogEntry
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 AccountSystemLogEntry
impl Debug for AccountSystemLogEntry
Source§impl<'de> Deserialize<'de> for AccountSystemLogEntry
impl<'de> Deserialize<'de> for AccountSystemLogEntry
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 AccountSystemLogEntry
impl RefUnwindSafe for AccountSystemLogEntry
impl Send for AccountSystemLogEntry
impl Sync for AccountSystemLogEntry
impl Unpin for AccountSystemLogEntry
impl UnsafeUnpin for AccountSystemLogEntry
impl UnwindSafe for AccountSystemLogEntry
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