pub struct TickFilter { /* private fields */ }Expand description
Filters ticks by optional symbol, side, and minimum quantity predicates.
All predicates are ANDed together. Unset predicates always pass.
Implementations§
Source§impl TickFilter
impl TickFilter
Sourcepub fn min_quantity(self, q: Quantity) -> Self
pub fn min_quantity(self, q: Quantity) -> Self
Restrict matches to ticks with quantity >= q.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TickFilter
impl RefUnwindSafe for TickFilter
impl Send for TickFilter
impl Sync for TickFilter
impl Unpin for TickFilter
impl UnsafeUnpin for TickFilter
impl UnwindSafe for TickFilter
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