pub struct ProcessResults { /* private fields */ }Expand description
Number of Standby calls that were completed.
Implementations§
Source§impl ProcessResults
impl ProcessResults
Sourcepub const fn fulfilled(&self) -> usize
pub const fn fulfilled(&self) -> usize
Number of Standby calls that were fulfilled.
Calls for futures via methods such as Standby::wait_for will be
marked as fulfilled once matched and an event is sent over the channel.
Caveat: although an event has been sent over the channel to the receiver it is not guaranteed whether the receiver end actually received it; the receiver end may drop shortly after an event is sent. In this case the call is considered to be fulfilled.
Sourcepub const fn sent(&self) -> usize
pub const fn sent(&self) -> usize
Number of Standby streaming calls that were matched and had an event
sent to them.
Caveat: although an event has been sent over the channel to the
receiver it is not guaranteed whether the receiver end actually received
it; the receiver end may drop shortly after an event is sent. In this
case the call is considered to be sent. Checks over this call will in
the future be considered dropped.
Trait Implementations§
Source§impl Clone for ProcessResults
impl Clone for ProcessResults
Source§fn clone(&self) -> ProcessResults
fn clone(&self) -> ProcessResults
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more