[][src]Struct bufkit_data::Site

pub struct Site {
    pub id: 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

id: String

Site id, usually a 3 or 4 letter identifier (e.g. kord katl ksea).

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

impl Clone for Site[src]

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

Performs copy-assignment from source. Read more

impl Debug for Site[src]

Auto Trait Implementations

impl Send for Site

impl Sync for Site

Blanket Implementations

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> From<T> for 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<T> Borrow<T> for T where
    T: ?Sized
[src]

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

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