pub struct SubmitReply {
pub seq: u64,
pub hash_hex: String,
}Expand description
The sequencer’s acknowledgement.
Fields§
§seq: u64Position assigned in the total order.
hash_hex: StringHex content hash of the appended entry (the new head).
Trait Implementations§
Source§impl Debug for SubmitReply
impl Debug for SubmitReply
Source§impl<'de> Deserialize<'de> for SubmitReply
impl<'de> Deserialize<'de> for SubmitReply
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 SubmitReply
impl RefUnwindSafe for SubmitReply
impl Send for SubmitReply
impl Sync for SubmitReply
impl Unpin for SubmitReply
impl UnsafeUnpin for SubmitReply
impl UnwindSafe for SubmitReply
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