pub trait InterfacePathRequestLimitTable {
// Required methods
fn capacity(&self) -> usize;
fn rows(&self) -> &[InterfacePathRequestLimit];
fn rows_mut(&mut self) -> &mut [InterfacePathRequestLimit];
fn push(&mut self, row: InterfacePathRequestLimit);
fn swap_remove(&mut self, index: usize);
}Required Methods§
fn capacity(&self) -> usize
fn rows(&self) -> &[InterfacePathRequestLimit]
fn rows_mut(&mut self) -> &mut [InterfacePathRequestLimit]
fn push(&mut self, row: InterfacePathRequestLimit)
fn swap_remove(&mut self, index: usize)
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".