pub struct RvolParams {
pub lookback: usize,
}Expand description
RVOL lookback pack.
Fields§
§lookback: usizeImplementations§
Trait Implementations§
Source§impl Clone for RvolParams
impl Clone for RvolParams
Source§fn clone(&self) -> RvolParams
fn clone(&self) -> RvolParams
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 RvolParams
Source§impl Debug for RvolParams
impl Debug for RvolParams
impl Eq for RvolParams
Source§impl Hash for RvolParams
impl Hash for RvolParams
Source§impl PartialEq for RvolParams
impl PartialEq for RvolParams
impl StructuralPartialEq for RvolParams
Auto Trait Implementations§
impl Freeze for RvolParams
impl RefUnwindSafe for RvolParams
impl Send for RvolParams
impl Sync for RvolParams
impl Unpin for RvolParams
impl UnsafeUnpin for RvolParams
impl UnwindSafe for RvolParams
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more