pub struct Accepted {
pub seq: u64,
pub hash: ContentHash,
pub decision_latency: Duration,
}Expand description
The sequencer’s acknowledgement of a durably ordered op.
Fields§
§seq: u64Position assigned in the total order.
hash: ContentHashContent hash of the appended entry (the new log head).
decision_latency: DurationTime from dequeue to append; the merge-decision latency the Phase-0 gate measures (<100 ms target, CI excluded).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Accepted
impl RefUnwindSafe for Accepted
impl Send for Accepted
impl Sync for Accepted
impl Unpin for Accepted
impl UnsafeUnpin for Accepted
impl UnwindSafe for Accepted
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