pub struct BesselResult<T: BesselFloat> {
pub values: Vec<Complex<T>>,
pub underflow_count: usize,
pub status: Accuracy,
}Expand description
Result of a sequence computation, returned by _seq functions
(e.g., besselk_seq).
Single-value convenience functions (besselj, besselk, …) do not expose
this type; they return only the computed value and discard the status.
Fields§
§values: Vec<Complex<T>>Computed function values for orders ν, ν+1, …, ν+n-1.
underflow_count: usizeNumber of leading components set to zero due to underflow.
status: AccuracyAccuracy of the computation result.
See Accuracy for possible values and their meaning.
Trait Implementations§
Source§impl<T: Clone + BesselFloat> Clone for BesselResult<T>
impl<T: Clone + BesselFloat> Clone for BesselResult<T>
Source§fn clone(&self) -> BesselResult<T>
fn clone(&self) -> BesselResult<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 BesselResult<T>
impl<T: Debug + BesselFloat> Debug for BesselResult<T>
Source§impl<T: PartialEq + BesselFloat> PartialEq for BesselResult<T>
impl<T: PartialEq + BesselFloat> PartialEq for BesselResult<T>
impl<T: BesselFloat> StructuralPartialEq for BesselResult<T>
Auto Trait Implementations§
impl<T> Freeze for BesselResult<T>
impl<T> RefUnwindSafe for BesselResult<T>where
T: RefUnwindSafe,
impl<T> Send for BesselResult<T>where
T: Send,
impl<T> Sync for BesselResult<T>where
T: Sync,
impl<T> Unpin for BesselResult<T>where
T: Unpin,
impl<T> UnsafeUnpin for BesselResult<T>
impl<T> UnwindSafe for BesselResult<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