mkutils 0.1.132

Utility methods, traits, and types.
Documentation
1
2
3
4
5
6
7
8
9
pub trait Is<T>: Sized {
    fn into_self(self) -> T;
}

impl<T> Is<T> for T {
    fn into_self(self) -> T {
        self
    }
}