mkutils 0.1.151

Utility methods, traits, and types.
Documentation
1
2
3
4
5
6
7
use derive_more::{Constructor, From};

#[derive(Constructor, From)]
pub struct Indexed<T> {
    pub index: usize,
    pub value: T,
}