Skip to main content

IManifestResourceInfoMethods

Trait IManifestResourceInfoMethods 

Source
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§

Source

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

Source

fn get_referenced_assembly(self) -> Assembly

get_ReferencedAssembly() overload

Source

fn get_file_name(self) -> Il2CppString

get_FileName() overload

Source

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§

Source§

impl<__T: IManifestResourceInfo> IManifestResourceInfoMethods for __T

Available on crate feature system-reflection-manifestresourceinfo only.