pub struct EndpointDisabledEventData {
pub app_id: String,
pub app_uid: Option<String>,
pub endpoint_id: String,
pub endpoint_uid: Option<String>,
pub fail_since: String,
}
Expand description
EndpointDisabledEventData : Sent when an endpoint has been automatically disabled after continuous failures.
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
fail_since: String
Implementations§
Trait Implementations§
Source§impl Clone for EndpointDisabledEventData
impl Clone for EndpointDisabledEventData
Source§fn clone(&self) -> EndpointDisabledEventData
fn clone(&self) -> EndpointDisabledEventData
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 EndpointDisabledEventData
impl Debug for EndpointDisabledEventData
Source§impl Default for EndpointDisabledEventData
impl Default for EndpointDisabledEventData
Source§fn default() -> EndpointDisabledEventData
fn default() -> EndpointDisabledEventData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EndpointDisabledEventData
impl<'de> Deserialize<'de> for EndpointDisabledEventData
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
impl StructuralPartialEq for EndpointDisabledEventData
Auto Trait Implementations§
impl Freeze for EndpointDisabledEventData
impl RefUnwindSafe for EndpointDisabledEventData
impl Send for EndpointDisabledEventData
impl Sync for EndpointDisabledEventData
impl Unpin for EndpointDisabledEventData
impl UnwindSafe for EndpointDisabledEventData
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