pub struct AuditSettings {
pub log_reads: bool,
}Expand description
Audit log configuration.
Fields§
§log_reads: boolWhether to log read operations (get, list, run). Default: false.
Trait Implementations§
Source§impl Clone for AuditSettings
impl Clone for AuditSettings
Source§fn clone(&self) -> AuditSettings
fn clone(&self) -> AuditSettings
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 AuditSettings
impl Debug for AuditSettings
Source§impl Default for AuditSettings
impl Default for AuditSettings
Source§fn default() -> AuditSettings
fn default() -> AuditSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditSettings
impl<'de> Deserialize<'de> for AuditSettings
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 AuditSettings
impl RefUnwindSafe for AuditSettings
impl Send for AuditSettings
impl Sync for AuditSettings
impl Unpin for AuditSettings
impl UnsafeUnpin for AuditSettings
impl UnwindSafe for AuditSettings
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