pub struct ConvergencePoint {
pub steps: usize,
pub price: f64,
pub elapsed: Duration,
}Expand description
One rung of a convergence ladder.
Fields§
§steps: usize§price: f64§elapsed: DurationTrait Implementations§
Source§impl Clone for ConvergencePoint
impl Clone for ConvergencePoint
Source§fn clone(&self) -> ConvergencePoint
fn clone(&self) -> ConvergencePoint
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 moreimpl Copy for ConvergencePoint
Auto Trait Implementations§
impl Freeze for ConvergencePoint
impl RefUnwindSafe for ConvergencePoint
impl Send for ConvergencePoint
impl Sync for ConvergencePoint
impl Unpin for ConvergencePoint
impl UnsafeUnpin for ConvergencePoint
impl UnwindSafe for ConvergencePoint
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