pub struct TickResult {
pub receipt: ContainerWitnessReceipt,
pub partial: bool,
pub components_completed: u8,
pub tick_time_us: u64,
}Expand description
Output of a single tick() invocation.
Fields§
§receipt: ContainerWitnessReceiptThe witness receipt generated for this epoch.
partial: boolTrue if any pipeline phase was skipped due to budget exhaustion.
components_completed: u8Bitmask of completed components.
tick_time_us: u64Wall-clock duration in microseconds.
Trait Implementations§
Source§impl Clone for TickResult
impl Clone for TickResult
Source§fn clone(&self) -> TickResult
fn clone(&self) -> TickResult
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 TickResult
impl Debug for TickResult
Source§impl<'de> Deserialize<'de> for TickResult
impl<'de> Deserialize<'de> for TickResult
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 TickResult
impl RefUnwindSafe for TickResult
impl Send for TickResult
impl Sync for TickResult
impl Unpin for TickResult
impl UnsafeUnpin for TickResult
impl UnwindSafe for TickResult
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