[][src]Struct ebd::Record

pub struct Record<'a> {
    pub global_unique_identifier: &'a str,
    pub last_edited_date: &'a str,
    pub taxonomic_order: &'a str,
    pub category: &'a str,
    pub common_name: &'a str,
    pub scientific_name: &'a str,
    pub subspecies_common_name: &'a str,
    pub subspecies_scientific_name: &'a str,
    pub observation_count: &'a str,
    pub breeding_bird_atlas_code: &'a str,
    pub breeding_bird_atlas_category: &'a str,
    pub agesex: &'a str,
    pub country: &'a str,
    pub country_code: &'a str,
    pub state: &'a str,
    pub state_code: &'a str,
    pub county: &'a str,
    pub county_code: &'a str,
    pub iba_code: &'a str,
    pub bcr_code: &'a str,
    pub usfws_code: &'a str,
    pub atlas_block: &'a str,
    pub locality: &'a str,
    pub locality_id: &'a str,
    pub locality_type: &'a str,
    pub latitude: f64,
    pub longitude: f64,
    pub observation_date: &'a str,
    pub time_observations_started: &'a str,
    pub observer_id: &'a str,
    pub sampling_event_identifier: &'a str,
    pub protocol_type: &'a str,
    pub protocol_code: &'a str,
    pub project_code: &'a str,
    pub duration_minutes: &'a str,
    pub effort_distance_km: &'a str,
    pub effort_area_ha: &'a str,
    pub number_observers: &'a str,
    pub all_species_reported: bool,
    pub group_identifier: &'a str,
    pub has_media: bool,
    pub approved: bool,
    pub reviewed: bool,
    pub reason: &'a str,
    pub trip_comments: &'a str,
    pub species_comments: &'a str,
}

Fields

global_unique_identifier: &'a strlast_edited_date: &'a strtaxonomic_order: &'a strcategory: &'a strcommon_name: &'a strscientific_name: &'a strsubspecies_common_name: &'a strsubspecies_scientific_name: &'a strobservation_count: &'a strbreeding_bird_atlas_code: &'a strbreeding_bird_atlas_category: &'a stragesex: &'a strcountry: &'a strcountry_code: &'a strstate: &'a strstate_code: &'a strcounty: &'a strcounty_code: &'a striba_code: &'a strbcr_code: &'a strusfws_code: &'a stratlas_block: &'a strlocality: &'a strlocality_id: &'a strlocality_type: &'a strlatitude: f64longitude: f64observation_date: &'a strtime_observations_started: &'a strobserver_id: &'a strsampling_event_identifier: &'a strprotocol_type: &'a strprotocol_code: &'a strproject_code: &'a strduration_minutes: &'a streffort_distance_km: &'a streffort_area_ha: &'a strnumber_observers: &'a strall_species_reported: boolgroup_identifier: &'a strhas_media: boolapproved: boolreviewed: boolreason: &'a strtrip_comments: &'a strspecies_comments: &'a str

Trait Implementations

impl<'a> Debug for Record<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Record<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Record<'a>

impl<'a> Send for Record<'a>

impl<'a> Sync for Record<'a>

impl<'a> Unpin for Record<'a>

impl<'a> UnwindSafe for Record<'a>

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<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.