[][src]Struct csv2svg::Seq

pub struct Seq {
    pub header: String,
    pub nature: Nature,
    pub raw: Vec<Option<String>>,
    pub ival: Vec<Option<i64>>,
    pub min: i64,
    pub max: i64,
}

Fields

header: Stringnature: Natureraw: Vec<Option<String>>ival: Vec<Option<i64>>min: i64max: i64

Implementations

impl Seq[src]

pub fn from_increasing_times(
    header: String,
    times: Vec<DateTime<Utc>>
) -> Result<Self>
[src]

pub fn from_integers(header: String, ival: Vec<Option<i64>>) -> Result<Self>[src]

pub fn new(raw_col: RawCol) -> Result<Self>[src]

pub fn is_full_and_increasing(&self) -> bool[src]

pub fn len(&self) -> usize[src]

Trait Implementations

impl Debug for Seq[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> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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<V, T> VZip<V> for T where
    V: MultiLane<T>,