pub struct LoweredMasks {
pub sub: Vec<DynamicObject>,
pub add: Vec<DynamicObject>,
}Expand description
Masks for one lowering pass, in the child’s frame: sub cuts material
(chamfers, convex fillets), add fills it in (concave ring fillets).
Fields§
§sub: Vec<DynamicObject>§add: Vec<DynamicObject>Trait Implementations§
Source§impl Clone for LoweredMasks
impl Clone for LoweredMasks
Source§fn clone(&self) -> LoweredMasks
fn clone(&self) -> LoweredMasks
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 LoweredMasks
impl Debug for LoweredMasks
Source§impl Default for LoweredMasks
impl Default for LoweredMasks
Source§fn default() -> LoweredMasks
fn default() -> LoweredMasks
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LoweredMasks
impl RefUnwindSafe for LoweredMasks
impl Send for LoweredMasks
impl Sync for LoweredMasks
impl Unpin for LoweredMasks
impl UnsafeUnpin for LoweredMasks
impl UnwindSafe for LoweredMasks
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> Identity for Twhere
T: ?Sized,
impl<T> Identity for Twhere
T: ?Sized,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more