Struct unc_primitives::types::StateChangesForBlockRange
source · pub struct StateChangesForBlockRange {
pub blocks: Vec<StateChangesForBlock>,
}Expand description
State changes for a range of blocks. Expects that a block is present at most once in the list.
Fields§
§blocks: Vec<StateChangesForBlock>Trait Implementations§
source§impl BorshDeserialize for StateChangesForBlockRange
impl BorshDeserialize for StateChangesForBlockRange
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,
Auto Trait Implementations§
impl Freeze for StateChangesForBlockRange
impl RefUnwindSafe for StateChangesForBlockRange
impl Send for StateChangesForBlockRange
impl Sync for StateChangesForBlockRange
impl Unpin for StateChangesForBlockRange
impl UnwindSafe for StateChangesForBlockRange
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