Struct asn1_der::VecBacking
source · pub struct VecBacking<'a>(pub &'a mut Vec<u8>);
Expand description
A newtype wrapper around a &'a mut Vec<u8>
that implements Sink
and Into<&'a [u8]>
Tuple Fields§
§0: &'a mut Vec<u8>
Trait Implementations§
source§impl<'a> Into<&'a [u8]> for VecBacking<'a>
impl<'a> Into<&'a [u8]> for VecBacking<'a>
source§impl<'a> Sink for VecBacking<'a>
impl<'a> Sink for VecBacking<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for VecBacking<'a>
impl<'a> Send for VecBacking<'a>
impl<'a> Sync for VecBacking<'a>
impl<'a> Unpin for VecBacking<'a>
impl<'a> !UnwindSafe for VecBacking<'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