[][src]Struct df_st_db::SiteMapImage

pub struct SiteMapImage {
    pub id: i32,
    pub world_id: i32,
    pub data: Vec<u8>,
    pub format: String,
}

Fields

id: i32world_id: i32data: Vec<u8>format: String

Implementations

impl SiteMapImage[src]

pub fn new() -> Self[src]

Trait Implementations

impl<'update> AsChangeset for &'update SiteMapImage[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<world_id, &'update i32>, Eq<data, &'update Vec<u8>>, Eq<format, &'update String>) as AsChangeset>::Changeset

The update statement this type represents

impl<'update> AsChangeset for SiteMapImage[src]

type Target = table

The table which Self::Changeset will be updating

type Changeset = <(Eq<world_id, i32>, Eq<data, Vec<u8>>, Eq<format, String>) as AsChangeset>::Changeset

The update statement this type represents

impl Clone for SiteMapImage[src]

impl DBObject<SiteMapImage, SiteMapImage> for SiteMapImage[src]

impl Debug for SiteMapImage[src]

impl Default for SiteMapImage[src]

impl Fillable for SiteMapImage[src]

impl Filler<SiteMapImage, SiteMapImage> for SiteMapImage[src]

From Core to DB

impl Filler<SiteMapImage, SiteMapImage> for SiteMapImage[src]

From DB to Core

impl HasTable for SiteMapImage[src]

type Table = table

The table this type is associated with.

impl Hash for SiteMapImage[src]

impl<'ident> Identifiable for &'ident SiteMapImage[src]

type Id = &'ident i32

The type of this struct's identifier. Read more

impl<'insert> Insertable<table> for SiteMapImage[src]

type Values = <(Option<Eq<id, i32>>, Option<Eq<world_id, i32>>, Option<Eq<data, Vec<u8>>>, Option<Eq<format, String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl<'insert> Insertable<table> for &'insert SiteMapImage[src]

type Values = <(Option<Eq<id, &'insert i32>>, Option<Eq<world_id, &'insert i32>>, Option<Eq<data, &'insert Vec<u8>>>, Option<Eq<format, &'insert String>>) as Insertable<table>>::Values

The VALUES clause to insert these records Read more

impl PartialEq<SiteMapImage> for SiteMapImage[src]

impl PartialEq<SiteMapImage> for SiteMapImage[src]

impl PartialEq<SiteMapImage> for SiteMapImage[src]

impl<__DB: Backend, __ST> Queryable<__ST, __DB> for SiteMapImage where
    (i32, i32, Vec<u8>, String): Queryable<__ST, __DB>, 
[src]

type Row = <(i32, i32, Vec<u8>, String) as Queryable<__ST, __DB>>::Row

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

impl<'insert> UndecoratedInsertRecord<table> for SiteMapImage[src]

Auto Trait Implementations

impl RefUnwindSafe for SiteMapImage

impl Send for SiteMapImage

impl Sync for SiteMapImage

impl Unpin for SiteMapImage

impl UnwindSafe for SiteMapImage

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> DynClone for T where
    T: Clone
[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

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,