pub trait IdTargeted: Send + Debug {
    fn get_id(&self) -> u64;
}
Expand description

This trait is implemented by requests that are targeted at an “element” with an id and by the corresponding responses coming back from said element

Required Methods

Implementors