pub struct GuildAuditLogChange {
pub new_value: Box<RawValue>,
pub old_value: Box<RawValue>,
}Fields§
§new_value: Box<RawValue>The new value of the key. Note: Due to the mixed nature of this field, a raw JSON string is returned, instead of an object. You are responsible for parsing the JSON to the appropriate struct.
old_value: Box<RawValue>The old value of this key. /// Note: Due to the mixed nature of this field, a raw JSON string is returned, instead of an object. You are responsible for parsing the JSON to the appropriate struct.
Trait Implementations§
Source§impl Clone for GuildAuditLogChange
impl Clone for GuildAuditLogChange
Source§fn clone(&self) -> GuildAuditLogChange
fn clone(&self) -> GuildAuditLogChange
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 GuildAuditLogChange
impl Debug for GuildAuditLogChange
Source§impl<'de> Deserialize<'de> for GuildAuditLogChange
impl<'de> Deserialize<'de> for GuildAuditLogChange
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 GuildAuditLogChange
impl RefUnwindSafe for GuildAuditLogChange
impl Send for GuildAuditLogChange
impl Sync for GuildAuditLogChange
impl Unpin for GuildAuditLogChange
impl UnwindSafe for GuildAuditLogChange
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