pub enum PlatformEconomicsCache {
Hit,
Miss,
Bypass,
Other(String),
}Expand description
hit — served from cache; miss — computed and cached; bypass — recomputed because
refresh=1.
Variants§
Implementations§
Trait Implementations§
Source§impl Clone for PlatformEconomicsCache
impl Clone for PlatformEconomicsCache
Source§fn clone(&self) -> PlatformEconomicsCache
fn clone(&self) -> PlatformEconomicsCache
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PlatformEconomicsCache
impl Debug for PlatformEconomicsCache
Source§impl Default for PlatformEconomicsCache
impl Default for PlatformEconomicsCache
Source§fn default() -> PlatformEconomicsCache
fn default() -> PlatformEconomicsCache
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PlatformEconomicsCache
impl<'de> Deserialize<'de> for PlatformEconomicsCache
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for PlatformEconomicsCache
impl Display for PlatformEconomicsCache
impl Eq for PlatformEconomicsCache
Source§impl From<&str> for PlatformEconomicsCache
impl From<&str> for PlatformEconomicsCache
Source§impl Hash for PlatformEconomicsCache
impl Hash for PlatformEconomicsCache
Source§impl PartialEq for PlatformEconomicsCache
impl PartialEq for PlatformEconomicsCache
Source§impl Serialize for PlatformEconomicsCache
impl Serialize for PlatformEconomicsCache
impl StructuralPartialEq for PlatformEconomicsCache
Auto Trait Implementations§
impl Freeze for PlatformEconomicsCache
impl RefUnwindSafe for PlatformEconomicsCache
impl Send for PlatformEconomicsCache
impl Sync for PlatformEconomicsCache
impl Unpin for PlatformEconomicsCache
impl UnsafeUnpin for PlatformEconomicsCache
impl UnwindSafe for PlatformEconomicsCache
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.