pub struct RefinementZone {
pub x_center: f64,
pub x_width: f64,
pub n_points: usize,
}Expand description
A localized region of extra grid points for resolving narrow features.
Fields§
§x_center: f64Center of the refinement region
x_width: f64Half-width of the refinement region
n_points: usizeNumber of extra points to add in this zone
Trait Implementations§
Source§impl Clone for RefinementZone
impl Clone for RefinementZone
Source§fn clone(&self) -> RefinementZone
fn clone(&self) -> RefinementZone
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for RefinementZone
impl RefUnwindSafe for RefinementZone
impl Send for RefinementZone
impl Sync for RefinementZone
impl Unpin for RefinementZone
impl UnwindSafe for RefinementZone
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