pub struct BlockConnectionOptions {
pub node_tol_xyz: Float,
pub min_shared_frac: Float,
pub min_shared_abs: usize,
pub stride_u: usize,
pub stride_v: usize,
pub use_area_fallback: bool,
pub area_min_overlap_frac: Float,
}Expand description
Options for the block connectivity calculation.
Fields§
§node_tol_xyz: Float§stride_u: usize§stride_v: usize§use_area_fallback: bool§area_min_overlap_frac: FloatTrait Implementations§
Source§impl Clone for BlockConnectionOptions
impl Clone for BlockConnectionOptions
Source§fn clone(&self) -> BlockConnectionOptions
fn clone(&self) -> BlockConnectionOptions
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 BlockConnectionOptions
impl Debug for BlockConnectionOptions
Source§impl Default for BlockConnectionOptions
impl Default for BlockConnectionOptions
impl Copy for BlockConnectionOptions
Auto Trait Implementations§
impl Freeze for BlockConnectionOptions
impl RefUnwindSafe for BlockConnectionOptions
impl Send for BlockConnectionOptions
impl Sync for BlockConnectionOptions
impl Unpin for BlockConnectionOptions
impl UnsafeUnpin for BlockConnectionOptions
impl UnwindSafe for BlockConnectionOptions
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,
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