pub struct Map<V: 'static> {
pub key: u64,
pub disps: &'static [(u32, u32)],
pub entries: &'static [(&'static str, V)],
}
Fields§
§key: u64
§disps: &'static [(u32, u32)]
§entries: &'static [(&'static str, V)]
Implementations§
Auto Trait Implementations§
impl<V> Freeze for Map<V>
impl<V> RefUnwindSafe for Map<V>where
V: RefUnwindSafe,
impl<V> Send for Map<V>where
V: Sync,
impl<V> Sync for Map<V>where
V: Sync,
impl<V> Unpin for Map<V>
impl<V> UnwindSafe for Map<V>where
V: RefUnwindSafe,
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