pub trait ILocationCacheKey: IObject {
// Provided methods
fn m_location(self) -> IResourceLocation { ... }
fn set_m_location(self, value: IResourceLocation) { ... }
fn m_desired_type(self) -> SystemType { ... }
fn set_m_desired_type(self, value: SystemType) { ... }
}Provided Methods§
fn m_location(self) -> IResourceLocation
fn set_m_location(self, value: IResourceLocation)
fn m_desired_type(self) -> SystemType
fn set_m_desired_type(self, value: SystemType)
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.