pub struct SphericalConfig {
pub max_iterations: usize,
pub threshold: f64,
}Expand description
Configuration for spherical operations
Fields§
§max_iterations: usizeMaximum iterations for iterative algorithms
threshold: f64Convergence threshold
Trait Implementations§
Source§impl Clone for SphericalConfig
impl Clone for SphericalConfig
Source§fn clone(&self) -> SphericalConfig
fn clone(&self) -> SphericalConfig
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 SphericalConfig
impl Debug for SphericalConfig
Auto Trait Implementations§
impl Freeze for SphericalConfig
impl RefUnwindSafe for SphericalConfig
impl Send for SphericalConfig
impl Sync for SphericalConfig
impl Unpin for SphericalConfig
impl UnwindSafe for SphericalConfig
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