Skip to main content

ICacheInitializationData

Trait ICacheInitializationData 

Source
pub trait ICacheInitializationData: IObject {
    // Provided methods
    fn m_compression_enabled(self) -> bool { ... }
    fn set_m_compression_enabled(self, value: bool) { ... }
    fn m_cache_directory_override(self) -> Il2CppString { ... }
    fn set_m_cache_directory_override(self, value: Il2CppString) { ... }
    fn m_expiration_delay(self) -> i32 { ... }
    fn set_m_expiration_delay(self, value: i32) { ... }
    fn m_limit_cache_size(self) -> bool { ... }
    fn set_m_limit_cache_size(self, value: bool) { ... }
    fn m_maximum_cache_size(self) -> i64 { ... }
    fn set_m_maximum_cache_size(self, value: i64) { ... }
}

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§