[][src]Struct wikibase::QuantityValue

pub struct QuantityValue { /* fields omitted */ }

QuantityValue

Holds the quantity value of a claim.

Json mapping

unit = http://www.wikidata.org/entity/Q11574

Methods

impl QuantityValue[src]

pub fn new<S: Into<String>>(
    amount: f64,
    lower_bound: Option<f64>,
    unit: S,
    upper_bound: Option<f64>
) -> QuantityValue
[src]

pub fn amount(&self) -> &f64[src]

pub fn lower_bound(&self) -> &Option<f64>[src]

pub fn set_amount(&mut self, amount: f64)[src]

pub fn set_lower_bound(&mut self, lower_bound: Option<f64>)[src]

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

pub fn set_upper_bound(&mut self, upper_bound: Option<f64>)[src]

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

pub fn upper_bound(&self) -> &Option<f64>[src]

Trait Implementations

impl Debug for QuantityValue[src]

Auto Trait Implementations

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]