pub enum TrimMode {
Individually,
Simultaneously,
}Expand description
How Trim distributes [start, end] across multiple accumulated paths.
Variants§
Individually
Each path is trimmed to [start, end] of its own perimeter.
Simultaneously
The concatenation of all paths is treated as one arc-length domain.
Trait Implementations§
impl Copy for TrimMode
Source§impl<'de> Deserialize<'de> for TrimMode
impl<'de> Deserialize<'de> for TrimMode
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 TrimMode
impl StructuralPartialEq for TrimMode
Auto Trait Implementations§
impl Freeze for TrimMode
impl RefUnwindSafe for TrimMode
impl Send for TrimMode
impl Sync for TrimMode
impl Unpin for TrimMode
impl UnsafeUnpin for TrimMode
impl UnwindSafe for TrimMode
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