pub trait IStrongNameKeyPair: IObject {
// Provided methods
fn public_key(self) -> Array<u8> { ... }
fn set_public_key(self, value: Array<u8>) { ... }
fn key_pair_container(self) -> Il2CppString { ... }
fn set_key_pair_container(self, value: Il2CppString) { ... }
fn key_pair_exported(self) -> bool { ... }
fn set_key_pair_exported(self, value: bool) { ... }
fn key_pair_array(self) -> Array<u8> { ... }
fn set_key_pair_array(self, value: Array<u8>) { ... }
}Provided Methods§
fn public_key(self) -> Array<u8>
fn set_public_key(self, value: Array<u8>)
fn key_pair_container(self) -> Il2CppString
fn set_key_pair_container(self, value: Il2CppString)
fn key_pair_exported(self) -> bool
fn set_key_pair_exported(self, value: bool)
fn key_pair_array(self) -> Array<u8>
fn set_key_pair_array(self, value: Array<u8>)
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.