pub struct PropertiesOptions {
pub gauss_order: usize,
pub adaptive_eps: f64,
pub max_depth: usize,
}Expand description
Options for property computation.
Fields§
§gauss_order: usizeGauss quadrature order (default 5).
adaptive_eps: f64Adaptive integration tolerance (default 1e-6).
max_depth: usizeMaximum adaptive subdivision depth (default 8).
Trait Implementations§
Source§impl Clone for PropertiesOptions
impl Clone for PropertiesOptions
Source§fn clone(&self) -> PropertiesOptions
fn clone(&self) -> PropertiesOptions
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 PropertiesOptions
impl Debug for PropertiesOptions
Auto Trait Implementations§
impl Freeze for PropertiesOptions
impl RefUnwindSafe for PropertiesOptions
impl Send for PropertiesOptions
impl Sync for PropertiesOptions
impl Unpin for PropertiesOptions
impl UnsafeUnpin for PropertiesOptions
impl UnwindSafe for PropertiesOptions
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