pub struct AdmissibleStatus {
pub below_energy_min: bool,
pub above_energy_max: bool,
pub below_temperature_min: bool,
pub above_temperature_max: bool,
pub above_abs_y_max: bool,
pub above_abs_v_max: bool,
pub near_boundary: bool,
pub outside_region: bool,
pub margin_fraction: f64,
}Fields§
§below_energy_min: bool§above_energy_max: bool§below_temperature_min: bool§above_temperature_max: bool§above_abs_y_max: bool§above_abs_v_max: bool§near_boundary: bool§outside_region: bool§margin_fraction: f64Trait Implementations§
Source§impl Clone for AdmissibleStatus
impl Clone for AdmissibleStatus
Source§fn clone(&self) -> AdmissibleStatus
fn clone(&self) -> AdmissibleStatus
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 AdmissibleStatus
impl Debug for AdmissibleStatus
Source§impl Default for AdmissibleStatus
impl Default for AdmissibleStatus
Source§fn default() -> AdmissibleStatus
fn default() -> AdmissibleStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AdmissibleStatus
impl<'de> Deserialize<'de> for AdmissibleStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AdmissibleStatus
impl RefUnwindSafe for AdmissibleStatus
impl Send for AdmissibleStatus
impl Sync for AdmissibleStatus
impl Unpin for AdmissibleStatus
impl UnsafeUnpin for AdmissibleStatus
impl UnwindSafe for AdmissibleStatus
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