More fixes for bigint duration (#3557)

This commit is contained in:
JT
2021-06-05 04:54:18 +12:00
committed by GitHub
parent 51890baace
commit 1d0d0425d4
4 changed files with 36 additions and 24 deletions

View File

@ -76,15 +76,6 @@ impl CommandArgs {
Ok((f(&evaluated_args.args)?, evaluated_args.input))
}
// pub fn process<'de, T: Deserialize<'de>>(self) -> Result<(T, InputStream), ShellError> {
// let args = self.evaluate_once()?;
// let call_info = args.call_info.clone();
// let mut deserializer = ConfigDeserializer::from_call_info(call_info);
// Ok((T::deserialize(&mut deserializer)?, args.input))
// }
}
pub struct EvaluatedCommandArgs {