imag-todo: Replace read with typed read
This commit is contained in:
parent
55d97e565d
commit
47e98675e7
1 changed files with 3 additions and 7 deletions
|
@ -82,6 +82,7 @@ fn tw_hook(rt: &Runtime) {
|
||||||
|
|
||||||
fn list(rt: &Runtime) {
|
fn list(rt: &Runtime) {
|
||||||
use toml_query::read::TomlValueReadExt;
|
use toml_query::read::TomlValueReadExt;
|
||||||
|
use toml_query::read::TomlValueReadTypeExt;
|
||||||
|
|
||||||
let subcmd = rt.cli().subcommand_matches("list").unwrap();
|
let subcmd = rt.cli().subcommand_matches("list").unwrap();
|
||||||
let verbose = subcmd.is_present("verbose");
|
let verbose = subcmd.is_present("verbose");
|
||||||
|
@ -99,13 +100,8 @@ fn list(rt: &Runtime) {
|
||||||
let uuids : Vec<_> = iter.filter_map(|storeid| {
|
let uuids : Vec<_> = iter.filter_map(|storeid| {
|
||||||
match rt.store().retrieve(storeid) {
|
match rt.store().retrieve(storeid) {
|
||||||
Ok(fle) => {
|
Ok(fle) => {
|
||||||
match fle.get_header().read(&String::from("todo.uuid")) {
|
match fle.get_header().read_string("todo.uuid") {
|
||||||
Ok(Some(&Value::String(ref u))) => Some(u.clone()),
|
Ok(Some(ref u)) => Some(u.clone()),
|
||||||
Ok(Some(_)) => {
|
|
||||||
error!("Header type error, expected String at 'todo.uuid' in {}",
|
|
||||||
fle.get_location());
|
|
||||||
None
|
|
||||||
},
|
|
||||||
Ok(None) => {
|
Ok(None) => {
|
||||||
error!("Header missing field in {}", fle.get_location());
|
error!("Header missing field in {}", fle.get_location());
|
||||||
None
|
None
|
||||||
|
|
Loading…
Reference in a new issue