[][src]Struct wikibase::MonoLingualText

pub struct MonoLingualText { /* fields omitted */ }

Monolingual Text

Monolingual text is similar to the LocaleString used for labels and descriptions. It holds a language key and a text.

Documentation

https://www.wikidata.org/wiki/Help:Data_type#Monolingual_text

Example

let text = wikibase::MonoLingualText::new("Bécs", "hu");

Methods

impl MonoLingualText[src]

pub fn new<S: Into<String>>(text: S, language: S) -> MonoLingualText[src]

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

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

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

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

Trait Implementations

impl Debug for MonoLingualText[src]

Auto Trait Implementations

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]