pub struct StepSchedule {
pub domain_idx: usize,
pub n_substeps: usize,
pub substep_dt: f64,
}Expand description
Describes how a single domain should be advanced during one global step.
Fields§
§domain_idx: usizeIndex of the domain.
n_substeps: usizeNumber of sub-steps this domain should take.
substep_dt: f64Timestep for each sub-step.
Trait Implementations§
Source§impl Clone for StepSchedule
impl Clone for StepSchedule
Source§fn clone(&self) -> StepSchedule
fn clone(&self) -> StepSchedule
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 StepSchedule
impl Debug for StepSchedule
Source§impl PartialEq for StepSchedule
impl PartialEq for StepSchedule
Source§fn eq(&self, other: &StepSchedule) -> bool
fn eq(&self, other: &StepSchedule) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StepSchedule
Auto Trait Implementations§
impl Freeze for StepSchedule
impl RefUnwindSafe for StepSchedule
impl Send for StepSchedule
impl Sync for StepSchedule
impl Unpin for StepSchedule
impl UnsafeUnpin for StepSchedule
impl UnwindSafe for StepSchedule
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<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.