pub trait TransferId: Default + Debug + Clone {
    fn increment(self) -> Self;
}
Expand description

Required operations for a transfer ID

Required methods

Increments the value of this transfer ID by 1

If this transfer ID is the maximum allowed value, this function must wrap around to the minimum allowed value.

Implementors