mkutils 0.1.122

Utility methods, traits, and types.
Documentation
1
2
3
4
5
6
7
8
use derive_more::{Constructor, From};
use std::io::Error as IoError;

#[derive(Constructor, From)]
pub struct ReadValue<P> {
    pub filepath: P,
    pub result: Result<String, IoError>,
}