useserde::{Serialize, Deserialize};/// A language that was spoken in a movie or TV show
#[derive(Serialize, Deserialize, Debug, Clone)]pubstructLanguage{/// The ISO 369-1 code for this language
pubiso_639_1: String,
/// The name of this language
pubname: String,
}