mirror of
https://github.com/darkicewolf50/RustBrock.git
synced 2025-08-05 01:30:53 -06:00
finished ch12.3
This commit is contained in:
29
minigrep/src/lib.rs
Normal file
29
minigrep/src/lib.rs
Normal file
@ -0,0 +1,29 @@
|
||||
use std::fs;
|
||||
use std::error::Error;
|
||||
|
||||
// refactor 9
|
||||
pub struct Config {
|
||||
pub query: String,
|
||||
pub file_path: String,
|
||||
}
|
||||
|
||||
impl Config {
|
||||
pub fn build(args: &[String]) -> Result<Config, &'static str> {
|
||||
if args.len() < 3 {
|
||||
return Err("not enough arguments");
|
||||
}
|
||||
|
||||
let query = args[1].clone();
|
||||
let file_path = args[2].clone();
|
||||
|
||||
Ok(Config { query, file_path })
|
||||
}
|
||||
}
|
||||
|
||||
pub fn run(config: Config) -> Result<(), Box<dyn Error>> {
|
||||
let contents = fs::read_to_string(config.file_path)?;
|
||||
|
||||
println!("With text:\n{contents}")
|
||||
|
||||
Ok(())
|
||||
}
|
Reference in New Issue
Block a user