pub trait ISaveDataReadHandleMethods: ISaveDataReadHandle {
// Provided methods
fn get_data(self) -> Array<u8> { ... }
fn set_data(self, value: impl Into<Array<u8>>) { ... }
fn get_read_size(self) -> i64 { ... }
fn set_read_size(self, value: impl Into<i64>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_read_size(self) -> i64
fn get_read_size(self) -> i64
get_ReadSize() overload
Sourcefn set_read_size(self, value: impl Into<i64>)
fn set_read_size(self, value: impl Into<i64>)
set_ReadSize(i64) 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: ISaveDataReadHandle> ISaveDataReadHandleMethods for __T
Available on crate feature
app-savedatareadhandle only.