[][src]Struct wikibase::SiteLink

pub struct SiteLink { /* fields omitted */ }

Sitelink

A sitelink contains the id of the connected site, which is usually a combination of language code (skwiki, skwikiquote) and the project id or for monolingual projects just the project-id (commonswiki, wikidatawiki).

The title of the page is stored as a string. A sitelink can also have a list of badges that the page has. Badges are item-ids and for example given to featured pages (Given as an ID e.g. "Q17437798").

For an overview of all allowed sites see: https://www.wikidata.org/w/api.php?action=paraminfo&modules=wbsetlabel

Example

let sitelink = wikibase::SiteLink::new("dewiki", "Österreich", vec!["Q17437798".to_string()]);

Methods

impl SiteLink[src]

pub fn new<S: Into<String>>(site: S, title: S, badges: Vec<String>) -> SiteLink[src]

pub fn site(&self) -> &String[src]

pub fn title(&self) -> &String[src]

pub fn badges(&self) -> &Vec<String>[src]

Trait Implementations

impl Eq for SiteLink[src]

impl PartialEq<SiteLink> for SiteLink[src]

#[must_use]
fn ne(&self, other: &Rhs) -> bool
1.0.0[src]

This method tests for !=.

impl Clone for SiteLink[src]

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

Performs copy-assignment from source. Read more

impl Debug for SiteLink[src]

impl Serialize for SiteLink[src]

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

Auto Trait Implementations

impl Send for SiteLink

impl Sync for SiteLink

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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

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

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