[][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 PartialEq<Coordinate> for Coordinate[src]

impl Clone for Coordinate[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Coordinate[src]

impl Serialize for Coordinate[src]

impl<'de> Deserialize<'de> for Coordinate[src]

Auto Trait Implementations

impl Send for Coordinate

impl Sync for Coordinate

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> From<T> for 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.

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

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

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err