pub struct PatchNoteDeletedEvent {
pub data: Box<PatchNoteDeletedEventData>,
}Expand description
PatchNoteDeletedEvent : Represents an event indicating that a patch note was deleted. Requires the stream:read and patch-notes:read scopes to receive this event.
Fields§
§data: Box<PatchNoteDeletedEventData>Implementations§
Source§impl PatchNoteDeletedEvent
impl PatchNoteDeletedEvent
Sourcepub fn new(data: PatchNoteDeletedEventData) -> PatchNoteDeletedEvent
pub fn new(data: PatchNoteDeletedEventData) -> PatchNoteDeletedEvent
Represents an event indicating that a patch note was deleted. Requires the stream:read and patch-notes:read scopes to receive this event.
Trait Implementations§
Source§impl Clone for PatchNoteDeletedEvent
impl Clone for PatchNoteDeletedEvent
Source§fn clone(&self) -> PatchNoteDeletedEvent
fn clone(&self) -> PatchNoteDeletedEvent
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 PatchNoteDeletedEvent
impl Debug for PatchNoteDeletedEvent
Source§impl Default for PatchNoteDeletedEvent
impl Default for PatchNoteDeletedEvent
Source§fn default() -> PatchNoteDeletedEvent
fn default() -> PatchNoteDeletedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchNoteDeletedEvent
impl<'de> Deserialize<'de> for PatchNoteDeletedEvent
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
Source§impl PartialEq for PatchNoteDeletedEvent
impl PartialEq for PatchNoteDeletedEvent
Source§impl Serialize for PatchNoteDeletedEvent
impl Serialize for PatchNoteDeletedEvent
impl StructuralPartialEq for PatchNoteDeletedEvent
Auto Trait Implementations§
impl Freeze for PatchNoteDeletedEvent
impl RefUnwindSafe for PatchNoteDeletedEvent
impl Send for PatchNoteDeletedEvent
impl Sync for PatchNoteDeletedEvent
impl Unpin for PatchNoteDeletedEvent
impl UnsafeUnpin for PatchNoteDeletedEvent
impl UnwindSafe for PatchNoteDeletedEvent
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