pub trait IVersusServerMetaData: IObject {
// Provided methods
fn m_buffer(self) -> Array<u8> { ... }
fn set_m_buffer(self, value: Array<u8>) { ... }
fn m_stream(self) -> Stream_2 { ... }
fn set_m_stream(self, value: Stream_2) { ... }
fn m_data_id(self) -> u64 { ... }
fn set_m_data_id(self, value: u64) { ... }
fn m_data_code(self) -> Il2CppString { ... }
fn set_m_data_code(self, value: Il2CppString) { ... }
}Provided Methods§
fn m_buffer(self) -> Array<u8>
fn set_m_buffer(self, value: Array<u8>)
fn m_stream(self) -> Stream_2
fn set_m_stream(self, value: Stream_2)
fn m_data_id(self) -> u64
fn set_m_data_id(self, value: u64)
fn m_data_code(self) -> Il2CppString
fn set_m_data_code(self, value: Il2CppString)
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.