pub struct ReadyBatch {
pub generation: u64,
pub epoch: u64,
pub entries: Vec<ReadyObservation>,
pub signals_ready: bool,
pub timers_ready: bool,
pub more: bool,
}Fields§
§generation: u64§epoch: u64§entries: Vec<ReadyObservation>§signals_ready: bool§timers_ready: bool§more: boolTrait Implementations§
Source§impl Clone for ReadyBatch
impl Clone for ReadyBatch
Source§fn clone(&self) -> ReadyBatch
fn clone(&self) -> ReadyBatch
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 moreSource§impl Debug for ReadyBatch
impl Debug for ReadyBatch
impl Eq for ReadyBatch
Source§impl PartialEq for ReadyBatch
impl PartialEq for ReadyBatch
impl StructuralPartialEq for ReadyBatch
Auto Trait Implementations§
impl Freeze for ReadyBatch
impl RefUnwindSafe for ReadyBatch
impl Send for ReadyBatch
impl Sync for ReadyBatch
impl Unpin for ReadyBatch
impl UnsafeUnpin for ReadyBatch
impl UnwindSafe for ReadyBatch
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