pub trait Component: Debug {
    fn default_desc(&self) -> Html;
    fn bundle(&self, outbasepath: &String) -> Result<Option<String>, Error>;
}

Required Methods

creates [.] (eg, .tar) from whatever self refers to invocation directory is unspecified returns None or “.” if adding . may also create temporarily

Implementors