pub enum RowBoundary<T> {
NotAKnot,
Natural,
Clamped,
Mixed {
left: SingleBoundary<T>,
right: SingleBoundary<T>,
},
}
Expand description
Boundary condition for a single data row
Variants§
NotAKnot
![BoundaryCondition::NotAKnot
]
Natural
![BoundaryCondition::Natural
]
Clamped
![BoundaryCondition::Clamped
]
Mixed
Set individual boundary conditions at the left and right end of the curve
Trait Implementations§
Source§impl<T: Clone> Clone for RowBoundary<T>
impl<T: Clone> Clone for RowBoundary<T>
Source§fn clone(&self) -> RowBoundary<T>
fn clone(&self) -> RowBoundary<T>
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<T: Debug> Debug for RowBoundary<T>
impl<T: Debug> Debug for RowBoundary<T>
Source§impl<T: SplineNum> Default for RowBoundary<T>
impl<T: SplineNum> Default for RowBoundary<T>
Source§impl<T: PartialEq> PartialEq for RowBoundary<T>
impl<T: PartialEq> PartialEq for RowBoundary<T>
impl<T: Eq> Eq for RowBoundary<T>
impl<T> StructuralPartialEq for RowBoundary<T>
Auto Trait Implementations§
impl<T> Freeze for RowBoundary<T>where
T: Freeze,
impl<T> RefUnwindSafe for RowBoundary<T>where
T: RefUnwindSafe,
impl<T> Send for RowBoundary<T>where
T: Send,
impl<T> Sync for RowBoundary<T>where
T: Sync,
impl<T> Unpin for RowBoundary<T>where
T: Unpin,
impl<T> UnwindSafe for RowBoundary<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