[][src]Enum vega_lite_3::ScaleType

pub enum ScaleType {
    Band,
    BinOrdinal,
    Linear,
    Log,
    Ordinal,
    Point,
    Pow,
    Quantile,
    Quantize,
    Sqrt,
    Symlog,
    Threshold,
    Time,
    Utc,
}

The type of scale. Vega-Lite supports the following categories of scale types:

  1. Continuous Scales -- mapping continuous domains to continuous output ranges ("linear", "pow", "sqrt", "symlog", "log", "time", "utc".

  2. Discrete Scales -- mapping discrete domains to discrete ("ordinal") or continuous ("band" and "point") output ranges.

  3. Discretizing Scales -- mapping continuous domains to discrete output ranges "bin-ordinal", "quantile", "quantize" and "threshold".

Default value: please see the scale type table.

Variants

Band
BinOrdinal
Linear
Log
Ordinal
Point
Pow
Quantile
Quantize
Sqrt
Symlog
Threshold
Time
Utc

Trait Implementations

impl Clone for ScaleType[src]

impl Debug for ScaleType[src]

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

impl Serialize for ScaleType[src]

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: Deserialize<'de>, 
[src]

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.