pub struct Integrator<Y>(pub Y);Expand description
Integrator
Tuple Fields§
§0: YCurrent integrator value
Trait Implementations§
Source§impl<Y: Clone> Clone for Integrator<Y>
impl<Y: Clone> Clone for Integrator<Y>
Source§fn clone(&self) -> Integrator<Y>
fn clone(&self) -> Integrator<Y>
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<Y: Debug> Debug for Integrator<Y>
impl<Y: Debug> Debug for Integrator<Y>
Source§impl<Y: Default> Default for Integrator<Y>
impl<Y: Default> Default for Integrator<Y>
Source§fn default() -> Integrator<Y>
fn default() -> Integrator<Y>
Returns the “default value” for a type. Read more
impl<Y: Copy> Copy for Integrator<Y>
Auto Trait Implementations§
impl<Y> Freeze for Integrator<Y>where
Y: Freeze,
impl<Y> RefUnwindSafe for Integrator<Y>where
Y: RefUnwindSafe,
impl<Y> Send for Integrator<Y>where
Y: Send,
impl<Y> Sync for Integrator<Y>where
Y: Sync,
impl<Y> Unpin for Integrator<Y>where
Y: Unpin,
impl<Y> UnwindSafe for Integrator<Y>where
Y: 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