pub struct TransactionVec(/* private fields */);
Implementations§
Source§impl TransactionVec
impl TransactionVec
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<Transaction>
pub fn get_unchecked(&self, idx: usize) -> Transaction
pub fn as_reader<'r>(&'r self) -> TransactionVecReader<'r>
Trait Implementations§
Source§impl Clone for TransactionVec
impl Clone for TransactionVec
Source§fn clone(&self) -> TransactionVec
fn clone(&self) -> TransactionVec
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 TransactionVec
impl Debug for TransactionVec
Source§impl Default for TransactionVec
impl Default for TransactionVec
Source§fn default() -> TransactionVec
fn default() -> TransactionVec
Returns the “default value” for a type. Read more
Source§impl Display for TransactionVec
impl Display for TransactionVec
Source§impl Entity for TransactionVec
impl Entity for TransactionVec
const NAME: &'static str = "TransactionVec"
type Builder = TransactionVecBuilder
fn new_unchecked(data: Bytes) -> TransactionVec
fn as_bytes(&self) -> Bytes
fn as_slice(&self) -> &[u8] ⓘ
fn from_slice(slice: &[u8]) -> Result<TransactionVec, VerificationError>
fn from_compatible_slice( slice: &[u8], ) -> Result<TransactionVec, VerificationError>
fn new_builder() -> <TransactionVec as Entity>::Builder
fn as_builder(self) -> <TransactionVec as Entity>::Builder
Source§impl IntoIterator for TransactionVec
impl IntoIterator for TransactionVec
Source§type Item = Transaction
type Item = Transaction
The type of the elements being iterated over.
Source§type IntoIter = TransactionVecIterator
type IntoIter = TransactionVecIterator
Which kind of iterator are we turning this into?
Source§fn into_iter(self) -> <TransactionVec as IntoIterator>::IntoIter
fn into_iter(self) -> <TransactionVec as IntoIterator>::IntoIter
Creates an iterator from a value. Read more
Auto Trait Implementations§
impl !Freeze for TransactionVec
impl RefUnwindSafe for TransactionVec
impl Send for TransactionVec
impl Sync for TransactionVec
impl Unpin for TransactionVec
impl UnwindSafe for TransactionVec
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<TransactionVec, Transaction> for Twhere
T: IntoIterator<Item = Transaction>,
impl<T> PackVec<TransactionVec, Transaction> for Twhere
T: IntoIterator<Item = Transaction>,
Source§fn pack(self) -> TransactionVec
fn pack(self) -> TransactionVec
Packs a vector of binary data into one binary data.