pub trait ISaveDataHandleMethods: ISaveDataHandle {
// Provided methods
fn is_running(self) -> bool { ... }
fn is_finished(self) -> bool { ... }
fn is_succeeded(self) -> bool { ... }
fn is_failed(self) -> bool { ... }
fn get_state(self) -> SaveDataHandle_States { ... }
fn set_state(self, value: impl Into<SaveDataHandle_States>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_running(self) -> bool
fn is_running(self) -> bool
IsRunning() overload
Sourcefn is_finished(self) -> bool
fn is_finished(self) -> bool
IsFinished() overload
Sourcefn is_succeeded(self) -> bool
fn is_succeeded(self) -> bool
IsSucceeded() overload
Sourcefn get_state(self) -> SaveDataHandle_States
fn get_state(self) -> SaveDataHandle_States
get_State() overload
Sourcefn set_state(self, value: impl Into<SaveDataHandle_States>)
fn set_state(self, value: impl Into<SaveDataHandle_States>)
set_State(crate::app::savedatahandle::SaveDataHandle_States) 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: ISaveDataHandle> ISaveDataHandleMethods for __T
Available on crate feature
app-savedatahandle only.