pub struct EinsteinSolution {
pub metric_tensor: MetricTensor,
pub coordinates: Vec<String>,
pub solution_type: String,
pub constraints_satisfied: bool,
pub physical_parameters: HashMap<String, SymbolicExpr>,
pub solution_domain: String,
}Fields§
§metric_tensor: MetricTensor§coordinates: Vec<String>§solution_type: String§constraints_satisfied: bool§physical_parameters: HashMap<String, SymbolicExpr>§solution_domain: StringTrait Implementations§
Source§impl Clone for EinsteinSolution
impl Clone for EinsteinSolution
Source§fn clone(&self) -> EinsteinSolution
fn clone(&self) -> EinsteinSolution
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 EinsteinSolution
impl Debug for EinsteinSolution
Source§impl<'de> Deserialize<'de> for EinsteinSolution
impl<'de> Deserialize<'de> for EinsteinSolution
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 EinsteinSolution
impl RefUnwindSafe for EinsteinSolution
impl Send for EinsteinSolution
impl Sync for EinsteinSolution
impl Unpin for EinsteinSolution
impl UnwindSafe for EinsteinSolution
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