pub trait IILocationSizeDataMethods: IILocationSizeData {
// Provided method
fn compute_size(
self,
location: impl Into<IResourceLocation>,
resource_manager: impl Into<ResourceManager>,
) -> i64 { ... }
}Provided Methods§
Sourcefn compute_size(
self,
location: impl Into<IResourceLocation>,
resource_manager: impl Into<ResourceManager>,
) -> i64
fn compute_size( self, location: impl Into<IResourceLocation>, resource_manager: impl Into<ResourceManager>, ) -> i64
ComputeSize(crate::unity_engine::resource_management::resource_locations::iresourcelocation::IResourceLocation, crate::unity_engine::resource_management::resourcemanager::ResourceManager) 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: IILocationSizeData> IILocationSizeDataMethods for __T
Available on crate feature
unity_engine-resource_management-resource_locations-ilocationsizedata only.