pub trait Command { // Required method fn build<'session>(&self, session: &'session Session) -> Command<'session>; }
A command should be able to build itself into an openssh::Command, given an openssh::Session.
openssh::Command
openssh::Session
Build the command.