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