pub trait ISaveData_Manager_TaskMethods: ISaveData_Manager_Task {
Show 15 methods
// Provided methods
fn get_kind(self) -> SaveData_Manager_TaskKind { ... }
fn set_kind(self, value: impl Into<SaveData_Manager_TaskKind>) { ... }
fn get_path(self) -> Il2CppString { ... }
fn set_path(self, value: impl Into<Il2CppString>) { ... }
fn get_data(self) -> Array<u8> { ... }
fn set_data(self, value: impl Into<Array<u8>>) { ... }
fn get_size(self) -> i64 { ... }
fn set_size(self, value: impl Into<i64>) { ... }
fn get_offset(self) -> i64 { ... }
fn set_offset(self, value: impl Into<i64>) { ... }
fn get_is_enable_resize(self) -> bool { ... }
fn set_is_enable_resize(self, value: impl Into<bool>) { ... }
fn get_handle(self) -> SaveDataHandle { ... }
fn set_handle(self, value: impl Into<SaveDataHandle>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_kind(self) -> SaveData_Manager_TaskKind
fn get_kind(self) -> SaveData_Manager_TaskKind
get_Kind() overload
Sourcefn set_kind(self, value: impl Into<SaveData_Manager_TaskKind>)
fn set_kind(self, value: impl Into<SaveData_Manager_TaskKind>)
set_Kind(crate::app::savedata::SaveData_Manager_TaskKind) overload
Sourcefn get_path(self) -> Il2CppString
fn get_path(self) -> Il2CppString
get_Path() overload
Sourcefn set_path(self, value: impl Into<Il2CppString>)
fn set_path(self, value: impl Into<Il2CppString>)
set_Path(::unity::Il2CppString) overload
Sourcefn get_offset(self) -> i64
fn get_offset(self) -> i64
get_Offset() overload
Sourcefn set_offset(self, value: impl Into<i64>)
fn set_offset(self, value: impl Into<i64>)
set_Offset(i64) overload
Sourcefn get_is_enable_resize(self) -> bool
fn get_is_enable_resize(self) -> bool
get_IsEnableResize() overload
Sourcefn set_is_enable_resize(self, value: impl Into<bool>)
fn set_is_enable_resize(self, value: impl Into<bool>)
set_IsEnableResize(bool) overload
Sourcefn get_handle(self) -> SaveDataHandle
fn get_handle(self) -> SaveDataHandle
get_Handle() overload
Sourcefn set_handle(self, value: impl Into<SaveDataHandle>)
fn set_handle(self, value: impl Into<SaveDataHandle>)
set_Handle(crate::app::savedatahandle::SaveDataHandle) 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: ISaveData_Manager_Task> ISaveData_Manager_TaskMethods for __T
Available on crate feature
app-savedata only.