[][src]Enum bufkit_data::Model

pub enum Model {
    GFS,
    NAM,
    NAM4KM,
    LocalWrf,
    Other,
}

Models potentially stored in the archive.

Variants

GFS

The U.S. Global Forecast System

NAM

The U.S. North American Model

NAM4KM

The high resolution nest of the NAM

LocalWrf

This could be any special local model, but let it be WRF.

Other

This is any other local model not accounted for so far.

Methods

impl Model[src]

pub fn hours_between_runs(self) -> i64[src]

Get the number of hours between runs.

pub fn base_hour(self) -> i64[src]

Get the base hour of a model run.

Most model run times are 0Z, 6Z, 12Z, 18Z. The base hour along with hours between runs allows you to reconstruct these times. Note that SREF starts at 03Z and runs every 6 hours, so it is different.

pub fn all_runs(
    self,
    start: &NaiveDateTime,
    end: &NaiveDateTime
) -> impl Iterator<Item = NaiveDateTime>
[src]

Create an iterator of all the model runs between two times

Trait Implementations

impl Eq for Model[src]

impl Clone for Model[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Copy for Model[src]

impl PartialEq<Model> for Model[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0
[src]

This method tests for !=.

impl Hash for Model[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for Model[src]

impl Display for Model[src]

impl FromStr for Model[src]

type Err = ParseError

The associated error which can be returned from parsing.

impl IntoEnumIterator for Model[src]

type Iterator = ModelIter

impl AsStaticRef<str> for Model[src]

Auto Trait Implementations

impl Send for Model

impl Sync for Model

Blanket Implementations

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

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]