[][src]Struct wikibase::Coordinate

pub struct Coordinate { /* fields omitted */ }

Coordinate

Used in Wikibase to store point coordinates on a globe. Consists of latitude, longitude and a globe. Precision and altitude are optional.

The globe is given as a link to an entity (e.g. http://www.wikidata.org/entity/Q2).

Documentation

  • https://www.wikidata.org/wiki/Help:Data_type#Globe_coordinate
  • https://www.mediawiki.org/wiki/Wikibase/DataModel#Geographic_locations

Example

let mut coordinate = wikibase::Coordinate::new(Some(100f64), "http://www.wikidata.org/entity/Q2".to_string(), 12f64, 6f64, Some(0f64));

Methods

impl Coordinate[src]

pub fn new(
    altitude: Option<f64>,
    globe: String,
    latitude: f64,
    longitude: f64,
    precision: Option<f64>
) -> Coordinate
[src]

pub fn altitude(&self) -> &Option<f64>[src]

pub fn globe(&self) -> &str[src]

pub fn latitude(&self) -> &f64[src]

pub fn longitude(&self) -> &f64[src]

pub fn precision(&self) -> &Option<f64>[src]

pub fn set_altitude(&mut self, altitude: Option<f64>)[src]

pub fn set_globe<S: Into<String>>(&mut self, globe: S)[src]

pub fn set_latitude(&mut self, latitude: f64)[src]

pub fn set_longitude(&mut self, longitude: f64)[src]

pub fn set_precision(&mut self, precision: Option<f64>)[src]

Trait Implementations

impl Debug for Coordinate[src]

Auto Trait Implementations

impl Send for Coordinate

impl Sync for Coordinate

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto 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> Any for T where
    T: 'static + ?Sized
[src]