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