Enum BarInterval
pub enum BarInterval {
Tick,
Second,
Minute,
Hour,
Day,
Week,
Month,
Custom(String),
}Expand description
Descriptive bar interval vocabulary.
Variants§
Tick
Tick-level interval.
Second
Second interval.
Minute
Minute interval.
Hour
Hour interval.
Day
Day interval.
Week
Week interval.
Month
Month interval.
Custom(String)
Caller-defined interval.
Trait Implementations§
§impl Clone for BarInterval
impl Clone for BarInterval
§fn clone(&self) -> BarInterval
fn clone(&self) -> BarInterval
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 more§impl Debug for BarInterval
impl Debug for BarInterval
§impl Display for BarInterval
impl Display for BarInterval
§impl FromStr for BarInterval
impl FromStr for BarInterval
§impl Hash for BarInterval
impl Hash for BarInterval
§impl Ord for BarInterval
impl Ord for BarInterval
§impl PartialEq for BarInterval
impl PartialEq for BarInterval
§impl PartialOrd for BarInterval
impl PartialOrd for BarInterval
impl Eq for BarInterval
impl StructuralPartialEq for BarInterval
Auto Trait Implementations§
impl Freeze for BarInterval
impl RefUnwindSafe for BarInterval
impl Send for BarInterval
impl Sync for BarInterval
impl Unpin for BarInterval
impl UnsafeUnpin for BarInterval
impl UnwindSafe for BarInterval
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