pub trait ShellVars {
    // Required method
    fn write_to_shell<W: Write>(&self, out: &ShellWriter<W>);
}
Expand description

An object that can be written as a group of shell variables.

Required Methods§

source

fn write_to_shell<W: Write>(&self, out: &ShellWriter<W>)

Write self to the shell writer out.

Object Safety§

This trait is not object safe.

Implementors§