pub struct GlassSeamConfig {
pub coverage_threshold: f64,
pub required_points: Vec<(usize, usize)>,
pub carve_radius: usize,
pub use_mst_terminals: bool,
}Fields§
§coverage_threshold: f64§required_points: Vec<(usize, usize)>§carve_radius: usize§use_mst_terminals: boolTrait Implementations§
Source§impl Clone for GlassSeamConfig
impl Clone for GlassSeamConfig
Source§fn clone(&self) -> GlassSeamConfig
fn clone(&self) -> GlassSeamConfig
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 Debug for GlassSeamConfig
impl Debug for GlassSeamConfig
Auto Trait Implementations§
impl Freeze for GlassSeamConfig
impl RefUnwindSafe for GlassSeamConfig
impl Send for GlassSeamConfig
impl Sync for GlassSeamConfig
impl Unpin for GlassSeamConfig
impl UnwindSafe for GlassSeamConfig
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