[−][src]Struct bufkit_data::Site
Description of a site with a sounding.
Fields
station_num: u32Station 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: boolFor 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]
fn hash<__H: Hasher>(&self, state: &mut __H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,