[][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]

Trait Implementations

impl Debug for SiteLink[src]

Auto Trait Implementations

impl Send for SiteLink

impl Sync for SiteLink

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]