[][src]Struct suggestor::models::Edit

pub struct Edit {
    pub id: u32,
    pub wiki: String,
    pub text: Vec<u8>,
    pub summary: String,
    pub baserevid: u32,
    pub pageid: u32,
    pub pagename: String,
    pub state: String,
}

Fields

id: u32wiki: Stringtext: Vec<u8>summary: Stringbaserevid: u32pageid: u32pagename: Stringstate: String

Trait Implementations

impl Clone for Edit[src]

impl Debug for Edit[src]

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

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

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

impl Serialize for Edit[src]

Auto Trait Implementations

impl RefUnwindSafe for Edit

impl Send for Edit

impl Sync for Edit

impl Unpin for Edit

impl UnwindSafe for Edit

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> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoCollection<T> for T

impl<T> IntoSql for T

impl<T> Same<T> for T

type Output = T

Should always be Self

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>,