pub struct PatchNoteDeletedEventData {
pub patch_note: Box<PatchNote>,
}Expand description
PatchNoteDeletedEventData : The data associated with the patch note.
Fields§
§patch_note: Box<PatchNote>Implementations§
Source§impl PatchNoteDeletedEventData
impl PatchNoteDeletedEventData
Sourcepub fn new(patch_note: PatchNote) -> PatchNoteDeletedEventData
pub fn new(patch_note: PatchNote) -> PatchNoteDeletedEventData
The data associated with the patch note.
Trait Implementations§
Source§impl Clone for PatchNoteDeletedEventData
impl Clone for PatchNoteDeletedEventData
Source§fn clone(&self) -> PatchNoteDeletedEventData
fn clone(&self) -> PatchNoteDeletedEventData
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PatchNoteDeletedEventData
impl Debug for PatchNoteDeletedEventData
Source§impl Default for PatchNoteDeletedEventData
impl Default for PatchNoteDeletedEventData
Source§fn default() -> PatchNoteDeletedEventData
fn default() -> PatchNoteDeletedEventData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchNoteDeletedEventData
impl<'de> Deserialize<'de> for PatchNoteDeletedEventData
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
impl StructuralPartialEq for PatchNoteDeletedEventData
Auto Trait Implementations§
impl Freeze for PatchNoteDeletedEventData
impl RefUnwindSafe for PatchNoteDeletedEventData
impl Send for PatchNoteDeletedEventData
impl Sync for PatchNoteDeletedEventData
impl Unpin for PatchNoteDeletedEventData
impl UnsafeUnpin for PatchNoteDeletedEventData
impl UnwindSafe for PatchNoteDeletedEventData
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