pub struct Entry {Show 14 fields
pub title: String,
pub year: Year,
pub rating: String,
pub runtime: String,
pub genres: SmallVec<[String; 3]>,
pub directors: SmallVec<[String; 3]>,
pub writers: SmallVec<[String; 3]>,
pub actors: SmallVec<[String; 3]>,
pub plot: String,
pub language: String,
pub country: String,
pub imdb_id: String,
pub imdb_rating: f32,
pub media_type: String,
}Fields
title: Stringyear: Yearrating: Stringruntime: Stringgenres: SmallVec<[String; 3]>directors: SmallVec<[String; 3]>writers: SmallVec<[String; 3]>actors: SmallVec<[String; 3]>plot: Stringlanguage: Stringcountry: Stringimdb_id: Stringimdb_rating: f32media_type: StringTrait Implementations
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more