Skip to main content

ISaveDataReadHandleMethods

Trait ISaveDataReadHandleMethods 

Source
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§

Source

fn get_data(self) -> Array<u8>

get_Data() overload

Source

fn set_data(self, value: impl Into<Array<u8>>)

set_Data(::unity::Array<u8>) overload

Source

fn get_read_size(self) -> i64

get_ReadSize() overload

Source

fn set_read_size(self, value: impl Into<i64>)

set_ReadSize(i64) overload

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: ISaveDataReadHandle> ISaveDataReadHandleMethods for __T

Available on crate feature app-savedatareadhandle only.