pub struct StructuralCalculationResult {
pub x_deg: Vec<f64>,
pub profile_y: Vec<f64>,
pub phases: Vec<StructuralPatternResult>,
}Expand description
Display-ready owned result from a structural calculation request.
Fields§
§x_deg: Vec<f64>Pattern grid copied from the evaluated request.
profile_y: Vec<f64>Sum of all phase profiles in prepared-model order.
phases: Vec<StructuralPatternResult>Complete diagnostic result for each phase in prepared-model order.
Trait Implementations§
Source§impl Clone for StructuralCalculationResult
impl Clone for StructuralCalculationResult
Source§fn clone(&self) -> StructuralCalculationResult
fn clone(&self) -> StructuralCalculationResult
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 StructuralCalculationResult
impl Debug for StructuralCalculationResult
impl StructuralPartialEq for StructuralCalculationResult
Auto Trait Implementations§
impl Freeze for StructuralCalculationResult
impl RefUnwindSafe for StructuralCalculationResult
impl Send for StructuralCalculationResult
impl Sync for StructuralCalculationResult
impl Unpin for StructuralCalculationResult
impl UnsafeUnpin for StructuralCalculationResult
impl UnwindSafe for StructuralCalculationResult
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more