pub struct Cell<K, V> {
pub base2_exponent: i8,
pub start_inclusive: K,
pub end_exclusive: K,
pub min: Min<V>,
pub max: Max<V>,
pub mean: Mean<V>,
}
Fields§
§base2_exponent: i8
§start_inclusive: K
§end_exclusive: K
§min: Min<V>
§max: Max<V>
§mean: Mean<V>
Auto Trait Implementations§
impl<K, V> Freeze for Cell<K, V>
impl<K, V> RefUnwindSafe for Cell<K, V>where
K: RefUnwindSafe,
V: RefUnwindSafe,
impl<K, V> Send for Cell<K, V>
impl<K, V> Sync for Cell<K, V>
impl<K, V> Unpin for Cell<K, V>
impl<K, V> UnwindSafe for Cell<K, V>where
K: UnwindSafe,
V: 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