pub struct AuditLogChangeApiType {
pub new_value: Option<Value>,
pub old_value: Option<Value>,
pub key: String,
}Fields§
§new_value: Option<Value>New value of the key
old_value: Option<Value>Old value of the key
key: StringName of the changed entity, with a few exceptions
Trait Implementations§
Source§impl Clone for AuditLogChangeApiType
impl Clone for AuditLogChangeApiType
Source§fn clone(&self) -> AuditLogChangeApiType
fn clone(&self) -> AuditLogChangeApiType
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 AuditLogChangeApiType
impl Debug for AuditLogChangeApiType
Source§impl<'de> Deserialize<'de> for AuditLogChangeApiType
impl<'de> Deserialize<'de> for AuditLogChangeApiType
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 AuditLogChangeApiType
impl RefUnwindSafe for AuditLogChangeApiType
impl Send for AuditLogChangeApiType
impl Sync for AuditLogChangeApiType
impl Unpin for AuditLogChangeApiType
impl UnwindSafe for AuditLogChangeApiType
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