Trait fuel_tx::Cacheable

source ·
pub trait Cacheable {
    fn is_computed(&self) -> bool;
    fn precompute(&mut self);
}
Expand description

Entity support metadata computation to cache results.

Required Methods

Computes the cache for the entity.

Implementors