Struct block_tools::db::models::Property[][src]

pub struct Property {
    pub id: i64,
    pub property_name: String,
    pub parent_id: i64,
    pub value_id: i64,
    pub annotation: Option<String>,
}

Fields

id: i64property_name: Stringparent_id: i64value_id: i64annotation: Option<String>

Trait Implementations

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for Property where
    (i64, String, i64, i64, Option<String>): Queryable<__ST, __DB>, 
[src]

type Row = <(i64, String, i64, i64, Option<String>) as Queryable<__ST, __DB>>::Row

The Rust type you'd like to map from. Read more

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> IntoSql 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.