pub struct SigFirstItem {
pub slot: u64,
pub seq: u64,
pub signature: [u8; 64],
}Expand description
One sig-first delivery: the transaction’s slot, this subscriber’s
per-connection sequence number (see SigFirstSub::gaps), and its
signature.
Fields§
§slot: u64§seq: u64§signature: [u8; 64]Trait Implementations§
Source§impl Clone for SigFirstItem
impl Clone for SigFirstItem
Source§fn clone(&self) -> SigFirstItem
fn clone(&self) -> SigFirstItem
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 moreimpl Copy for SigFirstItem
Source§impl Debug for SigFirstItem
impl Debug for SigFirstItem
impl Eq for SigFirstItem
Source§impl PartialEq for SigFirstItem
impl PartialEq for SigFirstItem
impl StructuralPartialEq for SigFirstItem
Auto Trait Implementations§
impl Freeze for SigFirstItem
impl RefUnwindSafe for SigFirstItem
impl Send for SigFirstItem
impl Sync for SigFirstItem
impl Unpin for SigFirstItem
impl UnsafeUnpin for SigFirstItem
impl UnwindSafe for SigFirstItem
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