pub struct Uint256Vec(/* private fields */);
Implementations§
Source§impl Uint256Vec
impl Uint256Vec
pub const ITEM_SIZE: usize = 32usize
pub fn total_size(&self) -> usize
pub fn item_count(&self) -> usize
pub fn len(&self) -> usize
pub fn is_empty(&self) -> bool
pub fn get(&self, idx: usize) -> Option<Uint256>
pub fn get_unchecked(&self, idx: usize) -> Uint256
pub fn as_reader<'r>(&'r self) -> Uint256VecReader<'r>
Trait Implementations§
Source§impl Clone for Uint256Vec
impl Clone for Uint256Vec
Source§fn clone(&self) -> Uint256Vec
fn clone(&self) -> Uint256Vec
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 Uint256Vec
impl Debug for Uint256Vec
Source§impl Default for Uint256Vec
impl Default for Uint256Vec
Source§impl Display for Uint256Vec
impl Display for Uint256Vec
Source§impl Entity for Uint256Vec
impl Entity for Uint256Vec
const NAME: &'static str = "Uint256Vec"
type Builder = Uint256VecBuilder
fn new_unchecked(data: Bytes) -> Self
fn as_bytes(&self) -> Bytes
fn as_slice(&self) -> &[u8] ⓘ
fn from_slice(slice: &[u8]) -> VerificationResult<Self>
fn from_compatible_slice(slice: &[u8]) -> VerificationResult<Self>
fn new_builder() -> Self::Builder
fn as_builder(self) -> Self::Builder
Source§impl IntoIterator for Uint256Vec
impl IntoIterator for Uint256Vec
Auto Trait Implementations§
impl !Freeze for Uint256Vec
impl RefUnwindSafe for Uint256Vec
impl Send for Uint256Vec
impl Sync for Uint256Vec
impl Unpin for Uint256Vec
impl UnwindSafe for Uint256Vec
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<T> PackVec<Uint256Vec, Uint256> for Twhere
T: IntoIterator<Item = Uint256>,
impl<T> PackVec<Uint256Vec, Uint256> for Twhere
T: IntoIterator<Item = Uint256>,
Source§fn pack(self) -> Uint256Vec
fn pack(self) -> Uint256Vec
Packs a vector of binary data into one binary data.