forked from extern/nushell
37 lines
845 B
Rust
37 lines
845 B
Rust
|
use nu_protocol::{
|
||
|
ast::Call,
|
||
|
engine::{Command, EngineState, Stack},
|
||
|
Category, PipelineData, Signature,
|
||
|
};
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
pub struct StrDatetimeDeprecated;
|
||
|
|
||
|
impl Command for StrDatetimeDeprecated {
|
||
|
fn name(&self) -> &str {
|
||
|
"str to-datetime"
|
||
|
}
|
||
|
|
||
|
fn signature(&self) -> Signature {
|
||
|
Signature::build(self.name()).category(Category::Deprecated)
|
||
|
}
|
||
|
|
||
|
fn usage(&self) -> &str {
|
||
|
"Deprecated command"
|
||
|
}
|
||
|
|
||
|
fn run(
|
||
|
&self,
|
||
|
_engine_state: &EngineState,
|
||
|
_stack: &mut Stack,
|
||
|
call: &Call,
|
||
|
_input: PipelineData,
|
||
|
) -> Result<nu_protocol::PipelineData, nu_protocol::ShellError> {
|
||
|
Err(nu_protocol::ShellError::DeprecatedCommand(
|
||
|
self.name().to_string(),
|
||
|
"into datetime".to_string(),
|
||
|
call.head,
|
||
|
))
|
||
|
}
|
||
|
}
|