[][src]Struct nf_rated::RatedRow

pub struct RatedRow {
    pub id: u32,
    pub title: String,
    pub year: u32,
    pub cast: String,
    pub country: String,
    pub director: String,
    pub typ: String,
    pub duration: String,
    pub plot: String,
    pub genre: Option<String>,
    pub language: Option<String>,
    pub writer: Option<String>,
    pub imdb_rating: Option<u32>,
    pub imdb_votes: Option<u32>,
    pub imdb_id: Option<String>,
    pub last_sync: Option<u32>,
}

Fields

id: u32title: Stringyear: u32cast: Stringcountry: Stringdirector: Stringtyp: Stringduration: Stringplot: Stringgenre: Option<String>language: Option<String>writer: Option<String>imdb_rating: Option<u32>imdb_votes: Option<u32>imdb_id: Option<String>last_sync: Option<u32>

Trait Implementations

impl Clone for RatedRow[src]

impl Debug for RatedRow[src]

impl From<(RatedRow, JsonRow, u32)> for RatedRow[src]

impl From<CsvRow> for RatedRow[src]

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.

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