pub trait IManifestResourceInfo: IObject {
// Provided methods
fn containing_assembly(self) -> Assembly { ... }
fn set_containing_assembly(self, value: Assembly) { ... }
fn containing_file_name(self) -> Il2CppString { ... }
fn set_containing_file_name(self, value: Il2CppString) { ... }
fn resource_location(self) -> ResourceLocation { ... }
fn set_resource_location(self, value: ResourceLocation) { ... }
}Provided Methods§
fn containing_assembly(self) -> Assembly
fn set_containing_assembly(self, value: Assembly)
fn containing_file_name(self) -> Il2CppString
fn set_containing_file_name(self, value: Il2CppString)
fn resource_location(self) -> ResourceLocation
fn set_resource_location(self, value: ResourceLocation)
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.