pub struct GetLastStateProofReader<'r>(/* private fields */);
Implementations§
Source§impl<'r> GetLastStateProofReader<'r>
impl<'r> GetLastStateProofReader<'r>
pub const FIELD_COUNT: usize = 6usize
pub fn total_size(&self) -> usize
pub fn field_count(&self) -> usize
pub fn count_extra_fields(&self) -> usize
pub fn has_extra_fields(&self) -> bool
pub fn last_hash(&self) -> Byte32Reader<'r>
pub fn start_hash(&self) -> Byte32Reader<'r>
pub fn start_number(&self) -> Uint64Reader<'r>
pub fn last_n_blocks(&self) -> Uint64Reader<'r>
pub fn difficulty_boundary(&self) -> Uint256Reader<'r>
pub fn difficulties(&self) -> Uint256VecReader<'r>
Trait Implementations§
Source§impl<'r> Clone for GetLastStateProofReader<'r>
impl<'r> Clone for GetLastStateProofReader<'r>
Source§fn clone(&self) -> GetLastStateProofReader<'r>
fn clone(&self) -> GetLastStateProofReader<'r>
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<'r> Debug for GetLastStateProofReader<'r>
impl<'r> Debug for GetLastStateProofReader<'r>
Source§impl<'r> Display for GetLastStateProofReader<'r>
impl<'r> Display for GetLastStateProofReader<'r>
Source§impl<'r> From<GetLastStateProofReader<'r>> for LightClientMessageUnionReader<'r>
impl<'r> From<GetLastStateProofReader<'r>> for LightClientMessageUnionReader<'r>
Source§fn from(item: GetLastStateProofReader<'r>) -> LightClientMessageUnionReader<'r>
fn from(item: GetLastStateProofReader<'r>) -> LightClientMessageUnionReader<'r>
Converts to this type from the input type.
Source§impl<'r> LowerHex for GetLastStateProofReader<'r>
impl<'r> LowerHex for GetLastStateProofReader<'r>
Source§impl<'r> Reader<'r> for GetLastStateProofReader<'r>
impl<'r> Reader<'r> for GetLastStateProofReader<'r>
const NAME: &'static str = "GetLastStateProofReader"
type Entity = GetLastStateProof
fn to_entity(&self) -> <GetLastStateProofReader<'r> as Reader<'r>>::Entity
fn new_unchecked(slice: &'r [u8]) -> GetLastStateProofReader<'r>
fn as_slice(&self) -> &'r [u8] ⓘ
fn verify(slice: &[u8], compatible: bool) -> Result<(), VerificationError>
fn from_slice(slice: &'r [u8]) -> Result<Self, VerificationError>
fn from_compatible_slice(slice: &'r [u8]) -> Result<Self, VerificationError>
impl<'r> Copy for GetLastStateProofReader<'r>
Auto Trait Implementations§
impl<'r> Freeze for GetLastStateProofReader<'r>
impl<'r> RefUnwindSafe for GetLastStateProofReader<'r>
impl<'r> Send for GetLastStateProofReader<'r>
impl<'r> Sync for GetLastStateProofReader<'r>
impl<'r> Unpin for GetLastStateProofReader<'r>
impl<'r> UnwindSafe for GetLastStateProofReader<'r>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<'r, R> FromSliceShouldBeOk<'r> for Rwhere
R: Reader<'r>,
impl<'r, R> FromSliceShouldBeOk<'r> for Rwhere
R: Reader<'r>,
Source§fn from_slice_should_be_ok(slice: &'r [u8]) -> R
fn from_slice_should_be_ok(slice: &'r [u8]) -> R
Unwraps the result of
from_slice(..)
with confidence and we assume that it’s impossible to fail.Source§fn from_compatible_slice_should_be_ok(slice: &'r [u8]) -> R
fn from_compatible_slice_should_be_ok(slice: &'r [u8]) -> R
Unwraps the result of
from_compatible_slice(..)
with confidence and we assume that it’s impossible to fail.