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