Skip to main content

ILRUCacheAllocationStrategy

Trait ILRUCacheAllocationStrategy 

Source
pub trait ILRUCacheAllocationStrategy: IObject {
    // Provided methods
    fn m_pool_max_size(self) -> i32 { ... }
    fn set_m_pool_max_size(self, value: i32) { ... }
    fn m_pool_initial_capacity(self) -> i32 { ... }
    fn set_m_pool_initial_capacity(self, value: i32) { ... }
    fn m_pool_cache_max_size(self) -> i32 { ... }
    fn set_m_pool_cache_max_size(self, value: i32) { ... }
    fn m_pool_cache(self) -> List_1<List_1<Object>> { ... }
    fn set_m_pool_cache(self, value: List_1<List_1<Object>>) { ... }
    fn m_cache(self) -> Dictionary_2<i32, List_1<Object>> { ... }
    fn set_m_cache(self, value: Dictionary_2<i32, List_1<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§