mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
29 lines
575 B
Rust
29 lines
575 B
Rust
|
use std::error::Error;
|
||
|
use std::fs;
|
||
|
|
||
|
pub struct Config {
|
||
|
pub query: String,
|
||
|
pub filename: String,
|
||
|
}
|
||
|
|
||
|
impl Config {
|
||
|
pub fn new(args: &[String]) -> Result<Config, &'static str> {
|
||
|
if args.len() < 3 {
|
||
|
return Err("not enough arguments");
|
||
|
}
|
||
|
|
||
|
let query = args[1].clone();
|
||
|
let filename = args[2].clone();
|
||
|
|
||
|
Ok(Config { query, filename })
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn run(config: Config) -> Result<(), Box<dyn Error>> {
|
||
|
let contents = fs::read_to_string(config.filename)?;
|
||
|
|
||
|
println!("With text:\n{}", contents);
|
||
|
|
||
|
Ok(())
|
||
|
}
|