pub struct PublishedStoreAck {
pub reference: StoreAckRef,
pub successor_slot: ObjectSlot,
pub standing: Option<StandingStoreAck>,
}Fields§
§reference: StoreAckRef§successor_slot: ObjectSlot§standing: Option<StandingStoreAck>What that acknowledgement said, so the next cycle can tell whether it
still holds. None on an acknowledgement installed while bootstrapping
the device, which computed no assertion of its own: the first cycle after
one of those has no basis to skip, so it acknowledges and records what it
said.
Trait Implementations§
Source§impl Clone for PublishedStoreAck
impl Clone for PublishedStoreAck
Source§fn clone(&self) -> PublishedStoreAck
fn clone(&self) -> PublishedStoreAck
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 moreAuto Trait Implementations§
impl Freeze for PublishedStoreAck
impl RefUnwindSafe for PublishedStoreAck
impl Send for PublishedStoreAck
impl Sync for PublishedStoreAck
impl Unpin for PublishedStoreAck
impl UnsafeUnpin for PublishedStoreAck
impl UnwindSafe for PublishedStoreAck
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