pub trait IManifestResourceInfoMethods: IManifestResourceInfo {
// Provided methods
fn ctor(
self,
containing_assembly: impl Into<Assembly>,
containing_file_name: impl Into<Il2CppString>,
resource_location: impl Into<ResourceLocation>,
) { ... }
fn get_referenced_assembly(self) -> Assembly { ... }
fn get_file_name(self) -> Il2CppString { ... }
fn get_resource_location(self) -> ResourceLocation { ... }
}Provided Methods§
Sourcefn ctor(
self,
containing_assembly: impl Into<Assembly>,
containing_file_name: impl Into<Il2CppString>,
resource_location: impl Into<ResourceLocation>,
)
fn ctor( self, containing_assembly: impl Into<Assembly>, containing_file_name: impl Into<Il2CppString>, resource_location: impl Into<ResourceLocation>, )
.ctor(crate::system::reflection::assembly::Assembly, ::unity::Il2CppString, crate::system::reflection::resourcelocation::ResourceLocation) overload
Sourcefn get_referenced_assembly(self) -> Assembly
fn get_referenced_assembly(self) -> Assembly
get_ReferencedAssembly() overload
Sourcefn get_file_name(self) -> Il2CppString
fn get_file_name(self) -> Il2CppString
get_FileName() overload
Sourcefn get_resource_location(self) -> ResourceLocation
fn get_resource_location(self) -> ResourceLocation
get_ResourceLocation() 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: IManifestResourceInfo> IManifestResourceInfoMethods for __T
Available on crate feature
system-reflection-manifestresourceinfo only.