Skip to main content

IAssemblyName

Trait IAssemblyName 

Source
pub trait IAssemblyName: IObject {
Show 24 methods // Provided methods fn name(self) -> Il2CppString { ... } fn set_name(self, value: Il2CppString) { ... } fn codebase(self) -> Il2CppString { ... } fn set_codebase(self, value: Il2CppString) { ... } fn major(self) -> i32 { ... } fn set_major(self, value: i32) { ... } fn minor(self) -> i32 { ... } fn set_minor(self, value: i32) { ... } fn build(self) -> i32 { ... } fn set_build(self, value: i32) { ... } fn revision(self) -> i32 { ... } fn set_revision(self, value: i32) { ... } fn flags(self) -> AssemblyNameFlags { ... } fn set_flags(self, value: AssemblyNameFlags) { ... } fn keypair(self) -> StrongNameKeyPair { ... } fn set_keypair(self, value: StrongNameKeyPair) { ... } fn public_key(self) -> Array<u8> { ... } fn set_public_key(self, value: Array<u8>) { ... } fn key_token(self) -> Array<u8> { ... } fn set_key_token(self, value: Array<u8>) { ... } fn processor_architecture(self) -> ProcessorArchitecture { ... } fn set_processor_architecture(self, value: ProcessorArchitecture) { ... } fn content_type(self) -> AssemblyContentType { ... } fn set_content_type(self, value: AssemblyContentType) { ... }
}

Provided Methods§

Source

fn name(self) -> Il2CppString

Source

fn set_name(self, value: Il2CppString)

Source

fn codebase(self) -> Il2CppString

Source

fn set_codebase(self, value: Il2CppString)

Source

fn major(self) -> i32

Source

fn set_major(self, value: i32)

Source

fn minor(self) -> i32

Source

fn set_minor(self, value: i32)

Source

fn build(self) -> i32

Source

fn set_build(self, value: i32)

Source

fn revision(self) -> i32

Source

fn set_revision(self, value: i32)

Source

fn flags(self) -> AssemblyNameFlags

Source

fn set_flags(self, value: AssemblyNameFlags)

Source

fn keypair(self) -> StrongNameKeyPair

Source

fn set_keypair(self, value: StrongNameKeyPair)

Source

fn public_key(self) -> Array<u8>

Source

fn set_public_key(self, value: Array<u8>)

Source

fn key_token(self) -> Array<u8>

Source

fn set_key_token(self, value: Array<u8>)

Source

fn processor_architecture(self) -> ProcessorArchitecture

Source

fn set_processor_architecture(self, value: ProcessorArchitecture)

Source

fn content_type(self) -> AssemblyContentType

Source

fn set_content_type(self, value: AssemblyContentType)

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§