pub enum BoundaryInterpolation {
Natural,
EdgesOnly,
EdgesAndCorners,
}Expand description
Boundary interpolation policy for positional evaluation.
Variants§
Natural
No boundary-specific handling.
EdgesOnly
Interpolate boundary edges only.
EdgesAndCorners
Interpolate boundary edges and pin corners.
Trait Implementations§
Source§impl Clone for BoundaryInterpolation
impl Clone for BoundaryInterpolation
Source§fn clone(&self) -> BoundaryInterpolation
fn clone(&self) -> BoundaryInterpolation
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 moreimpl Copy for BoundaryInterpolation
Source§impl Debug for BoundaryInterpolation
impl Debug for BoundaryInterpolation
Source§impl Default for BoundaryInterpolation
impl Default for BoundaryInterpolation
Source§fn default() -> BoundaryInterpolation
fn default() -> BoundaryInterpolation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BoundaryInterpolation
impl<'de> Deserialize<'de> for BoundaryInterpolation
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for BoundaryInterpolation
Source§impl Hash for BoundaryInterpolation
impl Hash for BoundaryInterpolation
Source§impl PartialEq for BoundaryInterpolation
impl PartialEq for BoundaryInterpolation
Source§fn eq(&self, other: &BoundaryInterpolation) -> bool
fn eq(&self, other: &BoundaryInterpolation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BoundaryInterpolation
impl Serialize for BoundaryInterpolation
impl StructuralPartialEq for BoundaryInterpolation
Auto Trait Implementations§
impl Freeze for BoundaryInterpolation
impl RefUnwindSafe for BoundaryInterpolation
impl Send for BoundaryInterpolation
impl Sync for BoundaryInterpolation
impl Unpin for BoundaryInterpolation
impl UnsafeUnpin for BoundaryInterpolation
impl UnwindSafe for BoundaryInterpolation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.