Trait completest_pty::RuntimeBuilder
source · pub trait RuntimeBuilder: Debug {
type Runtime: Runtime;
// Required methods
fn name() -> &'static str;
fn new(bin_root: PathBuf, home: PathBuf) -> Result<Self::Runtime, Error>;
fn with_home(
bin_root: PathBuf,
home: PathBuf,
) -> Result<Self::Runtime, Error>;
}
Available on Unix only.
Expand description
Abstract factory for Runtime
Required Associated Types§
Required Methods§
Object Safety§
This trait is not object safe.