pub trait RegionDataConstraints: Eq + Zero + AddAssign + Sub<Output = Self> + Clone + Send + Sync + Debug + Serialize + DeserializeOwned {
    fn count(&self) -> u32;
    fn size(&self) -> u32;
}
Expand description

The constraints necessary for any RegionData

Required Methods

The number of ops in this region

The size of all ops in this region

Implementors