pub struct RangeEntry<V> {
pub lo: f32,
pub hi: f32,
pub value: V,
}Expand description
A half-open interval [lo, hi).
Fields§
§lo: f32§hi: f32§value: VTrait Implementations§
Source§impl<V: Clone> Clone for RangeEntry<V>
impl<V: Clone> Clone for RangeEntry<V>
Source§fn clone(&self) -> RangeEntry<V>
fn clone(&self) -> RangeEntry<V>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<V: Debug> Debug for RangeEntry<V>
impl<V: Debug> Debug for RangeEntry<V>
Source§impl<V: PartialEq> PartialEq for RangeEntry<V>
impl<V: PartialEq> PartialEq for RangeEntry<V>
impl<V> StructuralPartialEq for RangeEntry<V>
Auto Trait Implementations§
impl<V> Freeze for RangeEntry<V>where
V: Freeze,
impl<V> RefUnwindSafe for RangeEntry<V>where
V: RefUnwindSafe,
impl<V> Send for RangeEntry<V>where
V: Send,
impl<V> Sync for RangeEntry<V>where
V: Sync,
impl<V> Unpin for RangeEntry<V>where
V: Unpin,
impl<V> UnsafeUnpin for RangeEntry<V>where
V: UnsafeUnpin,
impl<V> UnwindSafe for RangeEntry<V>where
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