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