pub struct MapSlot {
pub state: AtomicU8,
pub version: AtomicU32,
pub hash: AtomicU64,
pub payload: [u8; 48],
/* private fields */
}Fields§
§state: AtomicU8§version: AtomicU32§hash: AtomicU64§payload: [u8; 48]Auto Trait Implementations§
impl !Freeze for MapSlot
impl RefUnwindSafe for MapSlot
impl Send for MapSlot
impl Sync for MapSlot
impl Unpin for MapSlot
impl UnsafeUnpin for MapSlot
impl UnwindSafe for MapSlot
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