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 type: Option<String>,
pub description: Option<String>,
pub extra: Value,
}
Expand description
Account system log entry
Fields§
§id: Option<i32>
§time: Option<String>
§originator: Option<String>
§api_key_name: Option<String>
§resource: Option<String>
§type: Option<String>
§description: Option<String>
§extra: Value
Additional fields from the API
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 · 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 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