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