pub struct EndpointDeletedEventData {
pub app_id: String,
pub app_uid: Option<String>,
pub endpoint_id: String,
pub endpoint_uid: Option<String>,
}
Expand description
EndpointDeletedEventData : Sent when an endpoint is created, updated, or deleted
Fields§
§app_id: String
The app’s ID
app_uid: Option<String>
The app’s UID
endpoint_id: String
The ep’s ID
endpoint_uid: Option<String>
The ep’s UID
Implementations§
Source§impl EndpointDeletedEventData
impl EndpointDeletedEventData
Sourcepub fn new(app_id: String, endpoint_id: String) -> EndpointDeletedEventData
pub fn new(app_id: String, endpoint_id: String) -> EndpointDeletedEventData
Sent when an endpoint is created, updated, or deleted
Trait Implementations§
Source§impl Clone for EndpointDeletedEventData
impl Clone for EndpointDeletedEventData
Source§fn clone(&self) -> EndpointDeletedEventData
fn clone(&self) -> EndpointDeletedEventData
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 EndpointDeletedEventData
impl Debug for EndpointDeletedEventData
Source§impl Default for EndpointDeletedEventData
impl Default for EndpointDeletedEventData
Source§fn default() -> EndpointDeletedEventData
fn default() -> EndpointDeletedEventData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointDeletedEventData
impl<'de> Deserialize<'de> for EndpointDeletedEventData
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 EndpointDeletedEventData
impl PartialEq for EndpointDeletedEventData
Source§impl Serialize for EndpointDeletedEventData
impl Serialize for EndpointDeletedEventData
impl StructuralPartialEq for EndpointDeletedEventData
Auto Trait Implementations§
impl Freeze for EndpointDeletedEventData
impl RefUnwindSafe for EndpointDeletedEventData
impl Send for EndpointDeletedEventData
impl Sync for EndpointDeletedEventData
impl Unpin for EndpointDeletedEventData
impl UnwindSafe for EndpointDeletedEventData
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