Enum libreda_db::property_storage::PropertyValue[][src]

pub enum PropertyValue {
    String(Rc<String>),
    Bytes(Vec<u8>),
    SInt(i32),
    UInt(u32),
    Float(f64),
}

Property value type. Properties can hold different types that are encapsulated in this enum.

Variants

String(Rc<String>)

Property is a string.

Bytes(Vec<u8>)

Property is a byte string.

SInt(i32)

Property is a signed integer.

UInt(u32)

Property is an unsigned integer.

Float(f64)

Property is a float.

Trait Implementations

impl Clone for PropertyValue[src]

impl Debug for PropertyValue[src]

impl From<&'_ Rc<String>> for PropertyValue[src]

impl From<Rc<String>> for PropertyValue[src]

impl From<String> for PropertyValue[src]

impl From<Vec<u8, Global>> for PropertyValue[src]

impl From<f64> for PropertyValue[src]

impl From<i32> for PropertyValue[src]

impl From<u32> for PropertyValue[src]

impl<'a> TryInto<&'a str> for &'a PropertyValue[src]

type Error = ()

The type returned in the event of a conversion error.

impl TryInto<i32> for &PropertyValue[src]

type Error = ()

The type returned in the event of a conversion error.

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.