Struct bufkit_data::Inventory[][src]

pub struct Inventory {
    pub first: NaiveDateTime,
    pub last: NaiveDateTime,
    pub missing: Vec<(NaiveDateTime, NaiveDateTime)>,
    pub auto_download: bool,
}

Inventory lists first & last initialization times of the models in the archive for a site & model. It also contains a list of model initialization times that are missing between the first and last.

Fields

The earliest model run in the archive.

The last model run in the archive.

A list of start and end times for missing model runs.

Wheter this site is flagged for automatic download.

Trait Implementations

impl Debug for Inventory
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Inventory
[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 Inventory
[src]

Auto Trait Implementations

impl Send for Inventory

impl Sync for Inventory