Struct bufkit_data::SiteInfo [−][src]
pub struct SiteInfo {
pub station_num: StationNumber,
pub name: Option<String>,
pub notes: Option<String>,
pub state: Option<StateProv>,
pub time_zone: Option<FixedOffset>,
}Expand description
Description of a site with a sounding.
Fields
station_num: StationNumberStation number, this should be unique to the site. Site ids sometimes change around.
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.
time_zone: Option<FixedOffset>Time zone information
Implementations
Return true if there is any missing data. It ignores the notes field since this is only rarely used. Also, there is no requirement for a site to have an id.
Get description of the site without all the meta-data details.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for SiteInfoimpl UnwindSafe for SiteInfoBlanket Implementations
Mutably borrows from an owned value. Read more