[][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 PartialEq<QuantityValue> for QuantityValue[src]

impl Clone for QuantityValue[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for QuantityValue[src]

impl Serialize for QuantityValue[src]

impl<'de> Deserialize<'de> for QuantityValue[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> 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> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err