pub struct Value<const LEN: usize, T>(/* private fields */);
Implementations§
Trait Implementations§
Source§impl<const LEN: usize, T: Ord> Ord for Value<LEN, T>
impl<const LEN: usize, T: Ord> Ord for Value<LEN, T>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<const LEN: usize, T: PartialOrd> PartialOrd for Value<LEN, T>
impl<const LEN: usize, T: PartialOrd> PartialOrd for Value<LEN, T>
impl<const LEN: usize, T: Copy> Copy for Value<LEN, T>
impl<const LEN: usize, T: Eq> Eq for Value<LEN, T>
impl<const LEN: usize, T> StructuralPartialEq for Value<LEN, T>
Auto Trait Implementations§
impl<const LEN: usize, T> Freeze for Value<LEN, T>where
T: Freeze,
impl<const LEN: usize, T> RefUnwindSafe for Value<LEN, T>where
T: RefUnwindSafe,
impl<const LEN: usize, T> Send for Value<LEN, T>where
T: Send,
impl<const LEN: usize, T> Sync for Value<LEN, T>where
T: Sync,
impl<const LEN: usize, T> Unpin for Value<LEN, T>where
T: Unpin,
impl<const LEN: usize, T> UnwindSafe for Value<LEN, 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