[][src]Struct twitch_app_api::File

pub struct File {
    pub id: f64,
    pub display_name: String,
    pub file_name: String,
    pub file_date: String,
    pub file_length: u32,
    pub release_type: u16,
    pub file_status: u16,
    pub download_url: String,
    pub is_alternate: bool,
    pub alternate_file_id: u32,
    pub dependencies: Vec<File>,
    pub is_available: bool,
    pub modules: Vec<Module>,
    pub package_fingerprint: f64,
    pub game_version: Vec<String>,
    pub sortable_game_version: Vec<SortableGameVersion>,
    pub install_metadata: Option<String>,
    pub changelog: Option<String>,
    pub has_install_script: bool,
    pub is_compatible_with_client: bool,
    pub category_section_package_type: u16,
    pub restrict_project_file_access: u16,
    pub project_status: u16,
    pub render_cache_id: f64,
    pub file_legacy_mapping_id: Option<f64>,
    pub project_id: f64,
    pub parent_project_file_id: Option<f64>,
    pub parent_file_legacy_mapping_id: Option<f64>,
    pub file_type_id: Option<f64>,
    pub expose_as_alternative: Box<Option<File>>,
    pub package_fingerprint_id: f64,
    pub game_version_date_released: String,
    pub game_version_mapping_id: f64,
    pub game_version_id: u32,
    pub game_id: u32,
    pub is_server_pack: bool,
    pub server_pack_file_id: Option<u32>,
}

Fields

id: f64display_name: Stringfile_name: Stringfile_date: Stringfile_length: u32release_type: u16file_status: u16download_url: Stringis_alternate: boolalternate_file_id: u32dependencies: Vec<File>is_available: boolmodules: Vec<Module>package_fingerprint: f64game_version: Vec<String>sortable_game_version: Vec<SortableGameVersion>install_metadata: Option<String>changelog: Option<String>has_install_script: boolis_compatible_with_client: boolcategory_section_package_type: u16restrict_project_file_access: u16project_status: u16render_cache_id: f64file_legacy_mapping_id: Option<f64>project_id: f64parent_project_file_id: Option<f64>parent_file_legacy_mapping_id: Option<f64>file_type_id: Option<f64>expose_as_alternative: Box<Option<File>>package_fingerprint_id: f64game_version_date_released: Stringgame_version_mapping_id: f64game_version_id: u32game_id: u32is_server_pack: boolserver_pack_file_id: Option<u32>

Trait Implementations

impl Debug for File[src]

impl<'de> Deserialize<'de> for File[src]

Auto Trait Implementations

impl RefUnwindSafe for File

impl Send for File

impl Sync for File

impl Unpin for File

impl UnwindSafe for File

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

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.