mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
743 B
37 lines
743 B
// ANCHOR: here
|
|
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> {
|
|
// --snip--
|
|
// ANCHOR_END: here
|
|
if args.len() < 3 {
|
|
return Err("not enough arguments");
|
|
}
|
|
|
|
let query = args[1].clone();
|
|
let filename = args[2].clone();
|
|
|
|
Ok(Config { query, filename })
|
|
// ANCHOR: here
|
|
}
|
|
}
|
|
|
|
pub fn run(config: Config) -> Result<(), Box<dyn Error>> {
|
|
// --snip--
|
|
// ANCHOR_END: here
|
|
let contents = fs::read_to_string(config.filename)?;
|
|
|
|
println!("With text:\n{}", contents);
|
|
|
|
Ok(())
|
|
// ANCHOR: here
|
|
}
|
|
// ANCHOR_END: here
|