pub struct CborDetArray<'a> { /* private fields */ }
Expand description
The read-only type of Deterministic CBOR arrays. Values of this
type cannot be manually constructed by the user, they are meant to
be obtained only via cbor_det_destruct
below. The abstraction is
justified by the use of a refinement type, as per the definition
of cbor_det_array
in pulse/CBOR.Pulse.Det.API.Rust.fst
Trait Implementations§
Source§impl<'a> Clone for CborDetArray<'a>
impl<'a> Clone for CborDetArray<'a>
Source§fn clone(&self) -> CborDetArray<'a>
fn clone(&self) -> CborDetArray<'a>
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<'a> IntoIterator for CborDetArray<'a>
impl<'a> IntoIterator for CborDetArray<'a>
Source§impl<'a> PartialEq for CborDetArray<'a>
impl<'a> PartialEq for CborDetArray<'a>
impl<'a> Copy for CborDetArray<'a>
impl<'a> StructuralPartialEq for CborDetArray<'a>
Auto Trait Implementations§
impl<'a> Freeze for CborDetArray<'a>
impl<'a> RefUnwindSafe for CborDetArray<'a>
impl<'a> Send for CborDetArray<'a>
impl<'a> Sync for CborDetArray<'a>
impl<'a> Unpin for CborDetArray<'a>
impl<'a> UnwindSafe for CborDetArray<'a>
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