pub struct Slotted<T> {
pub src: u8,
pub value: T,
}Expand description
One clipboard item tagged with the PICO-8 slot it was copied from.
Fields§
§src: u8§value: TAuto Trait Implementations§
impl<T> Freeze for Slotted<T>where
T: Freeze,
impl<T> RefUnwindSafe for Slotted<T>where
T: RefUnwindSafe,
impl<T> Send for Slotted<T>where
T: Send,
impl<T> Sync for Slotted<T>where
T: Sync,
impl<T> Unpin for Slotted<T>where
T: Unpin,
impl<T> UnsafeUnpin for Slotted<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for Slotted<T>where
T: UnwindSafe,
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