Enum near_primitives::sharding::PartialEncodedChunk[][src]

pub enum PartialEncodedChunk {
    V1(PartialEncodedChunkV1),
    V2(PartialEncodedChunkV2),
}

Variants

Implementations

impl PartialEncodedChunk[src]

pub fn new(
    header: ShardChunkHeader,
    parts: Vec<PartialEncodedChunkPart>,
    receipts: Vec<ReceiptProof>
) -> Self
[src]

pub fn cloned_header(&self) -> ShardChunkHeader[src]

pub fn chunk_hash(&self) -> ChunkHash[src]

pub fn height_included(&self) -> BlockHeight[src]

pub fn parts(&self) -> &Vec<PartialEncodedChunkPart>[src]

pub fn receipts(&self) -> &Vec<ReceiptProof>[src]

pub fn prev_block(&self) -> &CryptoHash[src]

pub fn version_range(&self) -> ProtocolVersionRange[src]

Returns the lowest ProtocolVersion where this version of the message is accepted, along with the highest (exclusive), if any.

Trait Implementations

impl BorshDeserialize for PartialEncodedChunk where
    PartialEncodedChunkV1: BorshDeserialize,
    PartialEncodedChunkV2: BorshDeserialize
[src]

impl BorshSerialize for PartialEncodedChunk where
    PartialEncodedChunkV1: BorshSerialize,
    PartialEncodedChunkV2: BorshSerialize
[src]

impl Clone for PartialEncodedChunk[src]

impl Debug for PartialEncodedChunk[src]

impl Eq for PartialEncodedChunk[src]

impl From<PartialEncodedChunk> for PartialEncodedChunkV2[src]

impl From<PartialEncodedChunkWithArcReceipts> for PartialEncodedChunk[src]

impl PartialEq<PartialEncodedChunk> for PartialEncodedChunk[src]

impl Serialize for PartialEncodedChunk[src]

impl StructuralEq for PartialEncodedChunk[src]

impl StructuralPartialEq for PartialEncodedChunk[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,