pub trait IVersus_DownloadHistoryMethods: IVersus_DownloadHistory {
// Provided methods
fn ctor(self) { ... }
fn initialize_check_data(self) { ... }
fn set_donwloaded(self, data_type: impl Into<Versus_CheckDataType>) { ... }
fn is_downloaded(self, data_type: impl Into<Versus_CheckDataType>) -> bool { ... }
fn reset_check_data(self, data_type: impl Into<Versus_CheckDataType>) { ... }
fn all_reset(self) { ... }
}Provided Methods§
Sourcefn initialize_check_data(self)
fn initialize_check_data(self)
InitializeCheckData() overload
Sourcefn set_donwloaded(self, data_type: impl Into<Versus_CheckDataType>)
fn set_donwloaded(self, data_type: impl Into<Versus_CheckDataType>)
SetDonwloaded(crate::app::versus::Versus_CheckDataType) overload
Sourcefn is_downloaded(self, data_type: impl Into<Versus_CheckDataType>) -> bool
fn is_downloaded(self, data_type: impl Into<Versus_CheckDataType>) -> bool
IsDownloaded(crate::app::versus::Versus_CheckDataType) overload
Sourcefn reset_check_data(self, data_type: impl Into<Versus_CheckDataType>)
fn reset_check_data(self, data_type: impl Into<Versus_CheckDataType>)
ResetCheckData(crate::app::versus::Versus_CheckDataType) overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IVersus_DownloadHistory> IVersus_DownloadHistoryMethods for __T
Available on crate feature
app-versus only.