pub struct EndpointDeletedEvent {
pub data: Box<EndpointDeletedEventData>,
pub type: Type,
}
Expand description
EndpointDeletedEvent : Sent when an endpoint is deleted.
Fields§
§data: Box<EndpointDeletedEventData>
§type: Type
Implementations§
Source§impl EndpointDeletedEvent
impl EndpointDeletedEvent
Sourcepub fn new(data: EndpointDeletedEventData, type: Type) -> EndpointDeletedEvent
pub fn new(data: EndpointDeletedEventData, type: Type) -> EndpointDeletedEvent
Sent when an endpoint is deleted.
Trait Implementations§
Source§impl Clone for EndpointDeletedEvent
impl Clone for EndpointDeletedEvent
Source§fn clone(&self) -> EndpointDeletedEvent
fn clone(&self) -> EndpointDeletedEvent
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 EndpointDeletedEvent
impl Debug for EndpointDeletedEvent
Source§impl Default for EndpointDeletedEvent
impl Default for EndpointDeletedEvent
Source§fn default() -> EndpointDeletedEvent
fn default() -> EndpointDeletedEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointDeletedEvent
impl<'de> Deserialize<'de> for EndpointDeletedEvent
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 EndpointDeletedEvent
impl PartialEq for EndpointDeletedEvent
Source§impl Serialize for EndpointDeletedEvent
impl Serialize for EndpointDeletedEvent
impl StructuralPartialEq for EndpointDeletedEvent
Auto Trait Implementations§
impl Freeze for EndpointDeletedEvent
impl RefUnwindSafe for EndpointDeletedEvent
impl Send for EndpointDeletedEvent
impl Sync for EndpointDeletedEvent
impl Unpin for EndpointDeletedEvent
impl UnwindSafe for EndpointDeletedEvent
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