Enum binance_client::Interval[][src]

pub enum Interval {
    Minute1,
    Minute3,
    Minute5,
    Minute15,
    Minute30,
    Hour1,
    Hour2,
    Hour4,
    Hour6,
    Hour8,
    Hour12,
    Day1,
    Day3,
    Week1,
    Month1,
}

The chart timeframe interval.

Variants

Minute1

The 1 minute interval.

Minute3

The 3 minutes interval.

Minute5

The 5 minutes interval.

Minute15

The 15 minutes interval.

Minute30

The 30 minutes interval.

Hour1

The 1 hour interval.

Hour2

The 2 hours interval.

Hour4

The 4 hours interval.

Hour6

The 6 hours interval.

Hour8

The 8 hours interval.

Hour12

The 12 hours interval.

Day1

The 1 day interval.

Day3

The 3 days interval.

Week1

The 1 week interval.

Month1

The 1 month interval.

Trait Implementations

impl Clone for Interval[src]

impl Copy for Interval[src]

impl Debug for Interval[src]

impl<'de> Deserialize<'de> for Interval[src]

impl Display for Interval[src]

impl Eq for Interval[src]

impl Hash for Interval[src]

impl Into<i64> for Interval[src]

impl PartialEq<Interval> for Interval[src]

impl Serialize for Interval[src]

impl StructuralEq for Interval[src]

impl StructuralPartialEq for Interval[src]

impl TryFrom<i64> for Interval[src]

type Error = i64

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err

impl<T> Typeable for T where
    T: Any