pub struct HostCallbackReplayReport {
pub accepted: u64,
pub dropped_newest: u64,
pub dropped_oldest: u64,
pub rejected: u64,
pub closed: u64,
}Expand description
Outcome counts from deterministic host callback cassette replay.
Fields§
§accepted: u64Callback items accepted by the target queue.
dropped_newest: u64Callback items dropped by the target queue’s drop-newest policy.
dropped_oldest: u64Callback items evicted from the target queue’s drop-oldest policy.
rejected: u64Callback items rejected by the target queue’s overflow policy.
closed: u64Callback items refused because the target queue was closed.
Trait Implementations§
Source§impl Clone for HostCallbackReplayReport
impl Clone for HostCallbackReplayReport
Source§fn clone(&self) -> HostCallbackReplayReport
fn clone(&self) -> HostCallbackReplayReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for HostCallbackReplayReport
Source§impl Debug for HostCallbackReplayReport
impl Debug for HostCallbackReplayReport
Source§impl Default for HostCallbackReplayReport
impl Default for HostCallbackReplayReport
Source§fn default() -> HostCallbackReplayReport
fn default() -> HostCallbackReplayReport
Returns the “default value” for a type. Read more
impl Eq for HostCallbackReplayReport
Source§impl PartialEq for HostCallbackReplayReport
impl PartialEq for HostCallbackReplayReport
impl StructuralPartialEq for HostCallbackReplayReport
Auto Trait Implementations§
impl Freeze for HostCallbackReplayReport
impl RefUnwindSafe for HostCallbackReplayReport
impl Send for HostCallbackReplayReport
impl Sync for HostCallbackReplayReport
impl Unpin for HostCallbackReplayReport
impl UnsafeUnpin for HostCallbackReplayReport
impl UnwindSafe for HostCallbackReplayReport
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