[][src]Struct wikibase::query::EntityQuery

pub struct EntityQuery { /* fields omitted */ }

Query for entities items and properties by ID (wbgetentities).

This structure holds all the parameters to query for one or many Wikibase entities (items and properties).

API Documentation

https://www.wikidata.org/w/api.php?action=help&modules=wbgetentities

Example

let query = wikibase::query::EntityQuery::new(vec!["Q19660".to_string(), "P190".to_string()], "es");

Methods

impl EntityQuery[src]

pub fn new<S: Into<String>>(ids: Vec<String>, lang: S) -> EntityQuery[src]

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

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

pub fn url(&self, configuration: &Configuration) -> String[src]

Trait Implementations

impl Debug for EntityQuery[src]

Auto Trait Implementations

impl Send for EntityQuery

impl Sync for EntityQuery

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]