pub struct ArrayOwned { /* private fields */ }Expand description
CBOR Array with owned elements
Implementations§
Source§impl ArrayOwned
impl ArrayOwned
Sourcepub fn struct_len(&self) -> StructureLength
pub fn struct_len(&self) -> StructureLength
Get the structure length of the Array
Sourcepub fn iter<'a>(&'a self) -> impl Iterator<Item = Reader<'a>>
pub fn iter<'a>(&'a self) -> impl Iterator<Item = Reader<'a>>
Get an iterator to the reader of each element of the array
Trait Implementations§
Source§impl Clone for ArrayOwned
impl Clone for ArrayOwned
Source§fn clone(&self) -> ArrayOwned
fn clone(&self) -> ArrayOwned
Returns a duplicate 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 ArrayOwned
impl Debug for ArrayOwned
Source§impl Index<usize> for ArrayOwned
impl Index<usize> for ArrayOwned
Source§impl PartialEq for ArrayOwned
impl PartialEq for ArrayOwned
impl Eq for ArrayOwned
impl StructuralPartialEq for ArrayOwned
Auto Trait Implementations§
impl Freeze for ArrayOwned
impl RefUnwindSafe for ArrayOwned
impl Send for ArrayOwned
impl Sync for ArrayOwned
impl Unpin for ArrayOwned
impl UnwindSafe for ArrayOwned
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