pub struct CallbackStatistics {
pub callback_count: u64,
pub request_success_count: u64,
pub callback_fail_count: u64,
pub callback_success_count: u64,
pub internal_error_count: u64,
pub invalid_number_count: u64,
pub shutdown_error_count: u64,
pub black_list_count: u64,
pub frequency_limit_count: u64,
}Fields§
§callback_count: u64§request_success_count: u64§callback_fail_count: u64§callback_success_count: u64§internal_error_count: u64§invalid_number_count: u64§shutdown_error_count: u64§black_list_count: u64§frequency_limit_count: u64Trait Implementations§
Source§impl Debug for CallbackStatistics
impl Debug for CallbackStatistics
Source§impl<'de> Deserialize<'de> for CallbackStatistics
impl<'de> Deserialize<'de> for CallbackStatistics
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 CallbackStatistics
impl RefUnwindSafe for CallbackStatistics
impl Send for CallbackStatistics
impl Sync for CallbackStatistics
impl Unpin for CallbackStatistics
impl UnwindSafe for CallbackStatistics
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