pub trait IVersusServerReplayDataMethods: IVersusServerReplayData {
// Provided methods
fn ctor(self) { ... }
fn clear(self) { ... }
fn set_binary(self, bin: impl Into<Array<u8>>) { ... }
fn serialize(self) { ... }
fn deserialize(self) -> bool { ... }
fn get_buffer(self) -> Array<u8> { ... }
fn get_size(self) -> i32 { ... }
fn get_is_empty(self) -> bool { ... }
}Provided Methods§
Sourcefn set_binary(self, bin: impl Into<Array<u8>>)
fn set_binary(self, bin: impl Into<Array<u8>>)
SetBinary(::unity::Array<u8>) overload
Sourcefn deserialize(self) -> bool
fn deserialize(self) -> bool
Deserialize() overload
Sourcefn get_buffer(self) -> Array<u8>
fn get_buffer(self) -> Array<u8>
get_Buffer() overload
Sourcefn get_is_empty(self) -> bool
fn get_is_empty(self) -> bool
get_IsEmpty() 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: IVersusServerReplayData> IVersusServerReplayDataMethods for __T
Available on crate feature
app-versusserverreplaydata only.