[][src]Struct wikibase::EntityValue

pub struct EntityValue { /* fields omitted */ }

EntityValue

Target of claim that can either be an item or a property entity.

Example

let item = wikibase::EntityValue::new(wikibase::EntityType::Item, "Q212730");
let property = wikibase::EntityValue::new(wikibase::EntityType::Property, "P4539");

Methods

impl EntityValue[src]

pub fn new<S: Into<String>>(entity_type: EntityType, id: S) -> EntityValue[src]

pub fn new_from_object(
    value: &Map<String, Value>
) -> Result<EntityValue, WikibaseError>
[src]

pub fn entity_type(&self) -> &EntityType[src]

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

pub fn set_entity_type(&mut self, entity_type: EntityType)[src]

pub fn set_id<S: Into<String>>(&mut self, id: S)[src]

Trait Implementations

impl Debug for EntityValue[src]

Auto Trait Implementations

impl Send for EntityValue

impl Sync for EntityValue

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]