[][src]Struct bufkit_data::Site

pub struct Site {
    pub station_num: u32,
    pub id: Option<String>,
    pub name: Option<String>,
    pub notes: Option<String>,
    pub state: Option<StateProv>,
    pub auto_download: bool,
    pub time_zone: Option<FixedOffset>,
}

Description of a site with a sounding.

Fields

station_num: u32

Station number, this should be unique to the site. Site ids sometimes change around.

id: Option<String>

Site ID. This is usually a 3 or 4 letter ID. These change from time to time and are not always unique to a site. If you need an identifief unique to a location, use the station_num. Because these change, it is possible to orphan a site with a site id, hence the option.

name: Option<String>

A longer, more human readable name.

notes: Option<String>

Any relevant notes about the site.

state: Option<StateProv>

The state or providence where this location is located. This allows querying sites by what state or providence they are in.

auto_download: bool

For programs that download files, this allows marking some sites for automatic download without further specification.

time_zone: Option<FixedOffset>

Time zone information

Methods

impl Site[src]

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

Return true if there is any missing data. It ignores the notes field since this is only rarely used.

Trait Implementations

impl Clone for Site[src]

impl Debug for Site[src]

impl Default for Site[src]

impl Display for Site[src]

impl Eq for Site[src]

impl Hash for Site[src]

impl PartialEq<Site> for Site[src]

impl StructuralEq for Site[src]

impl StructuralPartialEq for Site[src]

Auto Trait Implementations

impl RefUnwindSafe for Site

impl Send for Site

impl Sync for Site

impl Unpin for Site

impl UnwindSafe for Site

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.