pub struct RetireReport {
pub inputs_abandoned: usize,
pub inputs_pending_drain: usize,
}Expand description
Report from a retire operation.
Fields§
§inputs_abandoned: usizeHow many non-terminal inputs were abandoned.
inputs_pending_drain: usizeHow many inputs are pending drain (will be processed before stopping).
Trait Implementations§
Source§impl Clone for RetireReport
impl Clone for RetireReport
Source§fn clone(&self) -> RetireReport
fn clone(&self) -> RetireReport
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 RetireReport
impl Debug for RetireReport
Source§impl<'de> Deserialize<'de> for RetireReport
impl<'de> Deserialize<'de> for RetireReport
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 RetireReport
impl RefUnwindSafe for RetireReport
impl Send for RetireReport
impl Sync for RetireReport
impl Unpin for RetireReport
impl UnsafeUnpin for RetireReport
impl UnwindSafe for RetireReport
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