pub trait IIAllocationStrategyMethods: IIAllocationStrategy {
// Provided methods
fn new(
self,
type: impl Into<SystemType>,
type_hash: impl Into<i32>,
) -> Object { ... }
fn release(self, type_hash: impl Into<i32>, obj: impl Into<Object>) { ... }
}Provided Methods§
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: IIAllocationStrategy> IIAllocationStrategyMethods for __T
Available on crate feature
unity_engine-resource_management-util-iallocationstrategy only.