Trait static_graph::index::Idx
source · pub trait Idx: Sized + Copy + 'static {
// Required methods
fn new(idx: usize) -> Self;
fn index(self) -> usize;
// Provided methods
fn inc_one(&mut self) -> Self { ... }
fn increment_by(&mut self, amount: usize) { ... }
fn plus(self, amount: usize) -> Self { ... }
}