use crate::commands::from_delimited_data::from_delimited_data; use crate::commands::WholeStreamCommand; use crate::prelude::*; use nu_errors::ShellError; use nu_protocol::Signature; pub struct FromTSV; #[derive(Deserialize)] pub struct FromTSVArgs { headerless: bool, } impl WholeStreamCommand for FromTSV { fn name(&self) -> &str { "from-tsv" } fn signature(&self) -> Signature { Signature::build("from-tsv").switch( "headerless", "don't treat the first row as column names", None, ) } fn usage(&self) -> &str { "Parse text as .tsv and create table." } fn run( &self, args: CommandArgs, registry: &CommandRegistry, ) -> Result { args.process(registry, from_tsv)?.run() } } fn from_tsv( FromTSVArgs { headerless }: FromTSVArgs, runnable_context: RunnableContext, ) -> Result { from_delimited_data(headerless, '\t', "TSV", runnable_context) }