Enum stellar_client::endpoint::trade::SegmentResolution[][src]

pub enum SegmentResolution {
    OneMin,
    FiveMin,
    FifteenMin,
    OneHour,
    OneDay,
    OneWeek,
}

The segment resolution used when querying for trade aggregations.

Variants

Represents a one minute segment.

Represents a five minute segment.

Represents a fifteen minute segment.

Represents an hour long segment.

Represents a day long segment.

Respresents a week long segment.

Trait Implementations

impl Debug for SegmentResolution
[src]

Formats the value using the given formatter. Read more

impl Clone for SegmentResolution
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for SegmentResolution
[src]

impl PartialEq for SegmentResolution
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Eq for SegmentResolution
[src]

impl From<SegmentResolution> for u64
[src]

Performs the conversion.

Auto Trait Implementations