pub struct RelayTransactionVec(/* private fields */);
Implementations§
Source§impl RelayTransactionVec
impl RelayTransactionVec
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<RelayTransaction>
pub fn get_unchecked(&self, idx: usize) -> RelayTransaction
pub fn as_reader<'r>(&'r self) -> RelayTransactionVecReader<'r>
Trait Implementations§
Source§impl Clone for RelayTransactionVec
impl Clone for RelayTransactionVec
Source§fn clone(&self) -> RelayTransactionVec
fn clone(&self) -> RelayTransactionVec
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 RelayTransactionVec
impl Debug for RelayTransactionVec
Source§impl Default for RelayTransactionVec
impl Default for RelayTransactionVec
Source§impl Display for RelayTransactionVec
impl Display for RelayTransactionVec
Source§impl Entity for RelayTransactionVec
impl Entity for RelayTransactionVec
const NAME: &'static str = "RelayTransactionVec"
type Builder = RelayTransactionVecBuilder
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 RelayTransactionVec
impl IntoIterator for RelayTransactionVec
Auto Trait Implementations§
impl !Freeze for RelayTransactionVec
impl RefUnwindSafe for RelayTransactionVec
impl Send for RelayTransactionVec
impl Sync for RelayTransactionVec
impl Unpin for RelayTransactionVec
impl UnwindSafe for RelayTransactionVec
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<RelayTransactionVec, RelayTransaction> for Twhere
T: IntoIterator<Item = RelayTransaction>,
impl<T> PackVec<RelayTransactionVec, RelayTransaction> for Twhere
T: IntoIterator<Item = RelayTransaction>,
Source§fn pack(self) -> RelayTransactionVec
fn pack(self) -> RelayTransactionVec
Packs a vector of binary data into one binary data.