pub struct AList<'t, K, V>(pub &'t [(K, V)]);Expand description
A temporary capability to look up
Tuple Fields§
§0: &'t [(K, V)]Implementations§
Trait Implementations§
impl<'t, K: Copy, V: Copy> Copy for AList<'t, K, V>
Auto Trait Implementations§
impl<'t, K, V> Freeze for AList<'t, K, V>
impl<'t, K, V> RefUnwindSafe for AList<'t, K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<'t, K, V> Send for AList<'t, K, V>
impl<'t, K, V> Sync for AList<'t, K, V>
impl<'t, K, V> Unpin for AList<'t, K, V>
impl<'t, K, V> UnwindSafe for AList<'t, K, V>where
K: RefUnwindSafe,
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