Trait kitty_remote_bindings::CommandOutput
source · pub trait CommandOutput {
type R;
// Required method
fn result(output: &Output) -> Result<Self::R>;
}Expand description
Parse and decode the output of Kitty’s remote commands.
For some commands the output, CommandOutput::R is just (), for some commands it’s actual data
like OsWindows for the Ls command.
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.