pub struct AiryResult<T: BesselFloat> {
pub value: Complex<T>,
pub status: Accuracy,
}Expand description
Result of an Airy function computation, returned by _raw functions
(e.g., airy_raw).
Simplified convenience functions (airy, biry, …) do not expose
this type; they return only the computed value and discard the status.
Fields§
§value: Complex<T>Computed function value.
status: AccuracyAccuracy of the computation result.
See Accuracy for possible values and their meaning.
Trait Implementations§
Source§impl<T: Clone + BesselFloat> Clone for AiryResult<T>
impl<T: Clone + BesselFloat> Clone for AiryResult<T>
Source§fn clone(&self) -> AiryResult<T>
fn clone(&self) -> AiryResult<T>
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<T: Debug + BesselFloat> Debug for AiryResult<T>
impl<T: Debug + BesselFloat> Debug for AiryResult<T>
Source§impl<T: PartialEq + BesselFloat> PartialEq for AiryResult<T>
impl<T: PartialEq + BesselFloat> PartialEq for AiryResult<T>
impl<T: Copy + BesselFloat> Copy for AiryResult<T>
impl<T: BesselFloat> StructuralPartialEq for AiryResult<T>
Auto Trait Implementations§
impl<T> Freeze for AiryResult<T>where
T: Freeze,
impl<T> RefUnwindSafe for AiryResult<T>where
T: RefUnwindSafe,
impl<T> Send for AiryResult<T>where
T: Send,
impl<T> Sync for AiryResult<T>where
T: Sync,
impl<T> Unpin for AiryResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for AiryResult<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for AiryResult<T>where
T: UnwindSafe,
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