pub struct Smoother {
slope_samples: usize,
value: f32,
inc: f32,
target: f32,
count: usize,
done: bool,
}
Fields
slope_samples: usize
value: f32
inc: f32
target: f32
count: usize
done: bool
Implementations
Auto Trait Implementations
impl RefUnwindSafe for Smoother
impl Send for Smoother
impl Sync for Smoother
impl Unpin for Smoother
impl UnwindSafe for Smoother
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more