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