pub enum ShardStateSyncResponse {
V1(ShardStateSyncResponseV1),
V2(ShardStateSyncResponseV2),
V3(ShardStateSyncResponseV3),
}Variants§
Implementations§
source§impl ShardStateSyncResponse
impl ShardStateSyncResponse
pub fn part_id(&self) -> Option<u64>
pub fn take_header(self) -> Option<ShardStateSyncResponseHeader>
pub fn part(&self) -> &Option<(u64, Vec<u8>)>
pub fn take_part(self) -> Option<(u64, Vec<u8>)>
pub fn can_generate(&self) -> bool
pub fn cached_parts(&self) -> &Option<CachedParts>
Trait Implementations§
source§impl BorshDeserialize for ShardStateSyncResponse
impl BorshDeserialize for ShardStateSyncResponse
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 Clone for ShardStateSyncResponse
impl Clone for ShardStateSyncResponse
source§fn clone(&self) -> ShardStateSyncResponse
fn clone(&self) -> ShardStateSyncResponse
Returns a copy 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 moresource§impl Debug for ShardStateSyncResponse
impl Debug for ShardStateSyncResponse
source§impl EnumExt for ShardStateSyncResponse
impl EnumExt for ShardStateSyncResponse
source§impl PartialEq for ShardStateSyncResponse
impl PartialEq for ShardStateSyncResponse
source§fn eq(&self, other: &ShardStateSyncResponse) -> bool
fn eq(&self, other: &ShardStateSyncResponse) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for ShardStateSyncResponse
impl StructuralPartialEq for ShardStateSyncResponse
Auto Trait Implementations§
impl Freeze for ShardStateSyncResponse
impl RefUnwindSafe for ShardStateSyncResponse
impl Send for ShardStateSyncResponse
impl Sync for ShardStateSyncResponse
impl Unpin for ShardStateSyncResponse
impl UnwindSafe for ShardStateSyncResponse
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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