Struct unc_primitives::sharding::StateSyncInfo
source · pub struct StateSyncInfo {
pub epoch_tail_hash: CryptoHash,
pub shards: Vec<ShardInfo>,
}Expand description
Contains the information that is used to sync state for shards as epochs switch
Fields§
§epoch_tail_hash: CryptoHashThe first block of the epoch for which syncing is happening
shards: Vec<ShardInfo>Shards to fetch state
Trait Implementations§
source§impl BorshDeserialize for StateSyncInfo
impl BorshDeserialize for StateSyncInfo
fn deserialize_reader<__R: Read>(reader: &mut __R) -> Result<Self, Error>
source§fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
fn deserialize(buf: &mut &[u8]) -> Result<Self, Error>
Deserializes this instance from a given slice of bytes.
Updates the buffer to point at the remaining bytes.
source§fn try_from_slice(v: &[u8]) -> Result<Self, Error>
fn try_from_slice(v: &[u8]) -> Result<Self, Error>
Deserialize this instance from a slice of bytes.
fn try_from_reader<R>(reader: &mut R) -> Result<Self, Error>where
R: Read,
source§impl BorshSerialize for StateSyncInfo
impl BorshSerialize for StateSyncInfo
source§impl Debug for StateSyncInfo
impl Debug for StateSyncInfo
source§impl PartialEq for StateSyncInfo
impl PartialEq for StateSyncInfo
source§fn eq(&self, other: &StateSyncInfo) -> bool
fn eq(&self, other: &StateSyncInfo) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StateSyncInfo
Auto Trait Implementations§
impl Freeze for StateSyncInfo
impl RefUnwindSafe for StateSyncInfo
impl Send for StateSyncInfo
impl Sync for StateSyncInfo
impl Unpin for StateSyncInfo
impl UnwindSafe for StateSyncInfo
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for F
impl<F, W, T, D> Deserialize<With<T, W>, D> for F
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more