pub enum Chunk<S: Store> {
Good {
save: bool,
value: S::Value,
},
Bad,
}
Expand description
A chunk. Don’t touch its insides unless you know what you’re doing!
Variants§
Implementations§
Auto Trait Implementations§
impl<S> Freeze for Chunk<S>
impl<S> RefUnwindSafe for Chunk<S>
impl<S> Send for Chunk<S>
impl<S> Sync for Chunk<S>
impl<S> Unpin for Chunk<S>
impl<S> UnwindSafe for Chunk<S>
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