pub struct CyberCycle<T, V> { /* private fields */ }Expand description
John Ehlers Cyber Cycle Indicator from: https://www.mesasoftware.com/papers/TheInverseFisherTransform.pdf
Implementations§
Source§impl<T, V> CyberCycle<T, V>
impl<T, V> CyberCycle<T, V>
Sourcepub fn window_len(&self) -> NonZeroUsize
pub fn window_len(&self) -> NonZeroUsize
The sliding window length
Source§impl<T, V> CyberCycle<T, V>
impl<T, V> CyberCycle<T, V>
Sourcepub fn new(view: V, window_len: NonZeroUsize) -> Self
pub fn new(view: V, window_len: NonZeroUsize) -> Self
Create a new Cyber Cycle Indicator with a chained View and a given window length
Trait Implementations§
Source§impl<T: Clone, V: Clone> Clone for CyberCycle<T, V>
impl<T: Clone, V: Clone> Clone for CyberCycle<T, V>
Source§fn clone(&self) -> CyberCycle<T, V>
fn clone(&self) -> CyberCycle<T, V>
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 moreAuto Trait Implementations§
impl<T, V> Freeze for CyberCycle<T, V>
impl<T, V> RefUnwindSafe for CyberCycle<T, V>where
V: RefUnwindSafe,
T: RefUnwindSafe,
impl<T, V> Send for CyberCycle<T, V>
impl<T, V> Sync for CyberCycle<T, V>
impl<T, V> Unpin for CyberCycle<T, V>
impl<T, V> UnsafeUnpin for CyberCycle<T, V>where
V: UnsafeUnpin,
T: UnsafeUnpin,
impl<T, V> UnwindSafe for CyberCycle<T, V>where
V: UnwindSafe,
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