Skip to main content

InterfacePathRequestLimitTable

Trait InterfacePathRequestLimitTable 

Source
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§

Source

fn capacity(&self) -> usize

Source

fn rows(&self) -> &[InterfacePathRequestLimit]

Source

fn rows_mut(&mut self) -> &mut [InterfacePathRequestLimit]

Source

fn push(&mut self, row: InterfacePathRequestLimit)

Source

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".

Implementors§