Type Alias CacheMode

Source
pub type CacheMode = VSCacheMode;

Aliased Type§

#[repr(C)]
pub enum CacheMode { Auto = -1, ForceDisable = 0, ForceEnable = 1, }

Variants§

§

Auto = -1

Cache is enabled or disabled based on the reported request patterns and number of consumers.

§

ForceDisable = 0

Never cache anything.

§

ForceEnable = 1

Always use the cache.