pub struct AuditLog {Show 13 fields
pub id: i64,
pub title: String,
pub description: Option<String>,
pub subject: Option<String>,
pub success: bool,
pub data: Option<Value>,
pub created_by: Option<String>,
pub node: Option<String>,
pub account_id: Option<i64>,
pub region_id: Option<i64>,
pub region_cluster_id: Option<i64>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Fields§
§id: i64§title: String§description: Option<String>§subject: Option<String>§success: bool§data: Option<Value>§created_by: Option<String>§node: Option<String>§account_id: Option<i64>§region_id: Option<i64>§region_cluster_id: Option<i64>§created_at: Option<String>§updated_at: Option<String>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
Auto Trait Implementations§
impl Freeze for AuditLog
impl RefUnwindSafe for AuditLog
impl Send for AuditLog
impl Sync for AuditLog
impl Unpin for AuditLog
impl UnsafeUnpin 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