Struct bufkit_data::Site[][src]

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

Description of a site with a sounding.

Fields

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

A longer, more human readable name.

Any relevant notes about the site.

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

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

Methods

impl Site
[src]

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

Trait Implementations

impl Debug for Site
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Site
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Site

impl Sync for Site