pub struct EndpointStatistics {
pub total: usize,
pub available: usize,
pub skipped: usize,
}Expand description
Statistics about endpoint availability
Fields§
§total: usizeTotal number of endpoints in the OpenAPI spec
available: usizeNumber of endpoints available for use
skipped: usizeNumber of endpoints skipped due to unsupported features
Trait Implementations§
Source§impl Debug for EndpointStatistics
impl Debug for EndpointStatistics
Source§impl<'de> Deserialize<'de> for EndpointStatistics
impl<'de> Deserialize<'de> for EndpointStatistics
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 EndpointStatistics
impl RefUnwindSafe for EndpointStatistics
impl Send for EndpointStatistics
impl Sync for EndpointStatistics
impl Unpin for EndpointStatistics
impl UnsafeUnpin for EndpointStatistics
impl UnwindSafe for EndpointStatistics
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