pub trait HasMaxSize {
    fn max_size(&self) -> usize;
    fn set_max_size(&mut self, max_size: usize);
}
Expand description

Interact with the maximum size

Required Methods

The maximum size hint for items and mutations returned

Sets the maximum size hint for the items and mutations

Implementors