pub trait IDressUtility: IObject {
// Provided methods
fn body_cache(self) -> HierarchyCache { ... }
fn set_body_cache(self, value: HierarchyCache) { ... }
}Provided Methods§
fn body_cache(self) -> HierarchyCache
fn set_body_cache(self, value: HierarchyCache)
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.