[][src]Struct vega_lite_3::SequenceParams

pub struct SequenceParams {
    pub sequence_params_as: Option<String>,
    pub start: Option<f64>,
    pub step: Option<f64>,
    pub stop: Option<f64>,
}

Generate a sequence of numbers.

Fields

sequence_params_as: Option<String>

The name of the generated sequence field.

Default value: "data"

start: Option<f64>

The starting value of the sequence (inclusive).

step: Option<f64>

The step value between sequence entries.

Default value: 1

stop: Option<f64>

The ending value of the sequence (exclusive).

Trait Implementations

impl Clone for SequenceParams[src]

impl Debug for SequenceParams[src]

impl Default for SequenceParams[src]

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

impl Serialize for SequenceParams[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.