pub trait DOD {
// Required methods
fn edge_dod(&self, eid: EdgeIndex) -> i32;
fn all_dod(&self) -> i32;
fn trailing_exponent(&self) -> i32;
}Required Methods§
Sourcefn edge_dod(&self, eid: EdgeIndex) -> i32
fn edge_dod(&self, eid: EdgeIndex) -> i32
Rescales momentum of edge eid, and computes the leading scaling.
fn trailing_exponent(&self) -> i32
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".