pub struct Map<'a> { /* private fields */ }
Expand description
Implementations§
Source§impl<'a> Map<'a>
impl<'a> Map<'a>
Sourcepub fn new(rep: &'a [u8]) -> Map<'a>
pub fn new(rep: &'a [u8]) -> Map<'a>
Creates a new Map, with a representation based on the passed in slice
rep
. The contents of rep
are opaque.
Auto Trait Implementations§
impl<'a> Freeze for Map<'a>
impl<'a> RefUnwindSafe for Map<'a>
impl<'a> Send for Map<'a>
impl<'a> Sync for Map<'a>
impl<'a> Unpin for Map<'a>
impl<'a> UnwindSafe for Map<'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