pub struct RangeSpace {
pub start: f64,
pub end: f64,
pub step: f64,
}Fields§
§start: f64§end: f64§step: f64Implementations§
Source§impl RangeSpace
impl RangeSpace
Trait Implementations§
Source§impl Clone for RangeSpace
impl Clone for RangeSpace
Source§fn clone(&self) -> RangeSpace
fn clone(&self) -> RangeSpace
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RangeSpace
impl Debug for RangeSpace
Source§impl PartialEq for RangeSpace
impl PartialEq for RangeSpace
Source§fn eq(&self, other: &RangeSpace) -> bool
fn eq(&self, other: &RangeSpace) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for RangeSpace
impl StructuralPartialEq for RangeSpace
Auto Trait Implementations§
impl Freeze for RangeSpace
impl RefUnwindSafe for RangeSpace
impl Send for RangeSpace
impl Sync for RangeSpace
impl Unpin for RangeSpace
impl UnsafeUnpin for RangeSpace
impl UnwindSafe for RangeSpace
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