[][src]Enum wikibase::EntityType

pub enum EntityType {
    Item,
    Property,
}

EntityType

Type of the a Wikidata entity. Is either Item or Property.

JSON Mapping

Item = item Property = property

Example

let entity_type = wikibase::EntityType::Item;
let item = wikibase::EntityType::new_from_str("Q256");
let property = wikibase::EntityType::new_from_str("P18");

Variants

ItemProperty

Methods

impl EntityType[src]

pub fn new_from_str(type_string: &str) -> Option<EntityType>[src]

pub fn new_from_id(id_string: &str) -> Result<EntityType, WikibaseError>[src]

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

Trait Implementations

impl Debug for EntityType[src]

Auto Trait Implementations

impl Send for EntityType

impl Sync for EntityType

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<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]