pub struct OutputEndpointErrorMetrics {
pub endpoint_name: String,
pub num_encode_errors: u64,
pub num_transport_errors: u64,
}Expand description
Metrics for an output endpoint.
Serializes to match the subset of fields needed for error tracking.
Fields§
§endpoint_name: String§num_encode_errors: u64§num_transport_errors: u64Trait Implementations§
Source§impl Clone for OutputEndpointErrorMetrics
impl Clone for OutputEndpointErrorMetrics
Source§fn clone(&self) -> OutputEndpointErrorMetrics
fn clone(&self) -> OutputEndpointErrorMetrics
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 OutputEndpointErrorMetrics
impl Debug for OutputEndpointErrorMetrics
Source§impl Default for OutputEndpointErrorMetrics
impl Default for OutputEndpointErrorMetrics
Source§fn default() -> OutputEndpointErrorMetrics
fn default() -> OutputEndpointErrorMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OutputEndpointErrorMetrics
impl<'de> Deserialize<'de> for OutputEndpointErrorMetrics
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
Auto Trait Implementations§
impl Freeze for OutputEndpointErrorMetrics
impl RefUnwindSafe for OutputEndpointErrorMetrics
impl Send for OutputEndpointErrorMetrics
impl Sync for OutputEndpointErrorMetrics
impl Unpin for OutputEndpointErrorMetrics
impl UnwindSafe for OutputEndpointErrorMetrics
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