pub struct NextBlock {
pub time: u32,
pub claims: Vec<ClaimRequest>,
}Expand description
What the next block is built from.
Fields§
§time: u32The header time wanted; at least the tip’s time plus one is used.
claims: Vec<ClaimRequest>Peg-ins to claim.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NextBlock
impl RefUnwindSafe for NextBlock
impl Send for NextBlock
impl Sync for NextBlock
impl Unpin for NextBlock
impl UnsafeUnpin for NextBlock
impl UnwindSafe for NextBlock
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