pub struct BuilderConfig { /* private fields */ }Expand description
Configuration for the builder.
Implementations§
Source§impl BuilderConfig
impl BuilderConfig
Sourcepub fn new(
cost_traversal: f32,
cost_intersection: f32,
empty_cut_bonus: f32,
) -> Self
pub fn new( cost_traversal: f32, cost_intersection: f32, empty_cut_bonus: f32, ) -> Self
Create a new BuilderConfig given the cost of a traversal, the cost of an intersection
test and the bonus for cutting an empty space.
§Panics
- If
cost_traversalis not strictly positive. - If
cost_intersectionis not strictly positive. - If
empty_cut_bonusis not between0.and1..
Sourcepub fn cost_traversal(&self) -> f32
pub fn cost_traversal(&self) -> f32
Retrieve the cost of a traversal.
Sourcepub fn cost_intersection(&self) -> f32
pub fn cost_intersection(&self) -> f32
Retrieve the cost of an intersection.
Sourcepub fn empty_cut_bonus(&self) -> f32
pub fn empty_cut_bonus(&self) -> f32
Retrieve the bonus for cutting an empty space.
Trait Implementations§
Source§impl Clone for BuilderConfig
impl Clone for BuilderConfig
Source§fn clone(&self) -> BuilderConfig
fn clone(&self) -> BuilderConfig
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 BuilderConfig
impl Debug for BuilderConfig
Source§impl Default for BuilderConfig
impl Default for BuilderConfig
impl Copy for BuilderConfig
Auto Trait Implementations§
impl Freeze for BuilderConfig
impl RefUnwindSafe for BuilderConfig
impl Send for BuilderConfig
impl Sync for BuilderConfig
impl Unpin for BuilderConfig
impl UnwindSafe for BuilderConfig
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