pub trait GetLogs {
    fn get_logs(self) -> Option<PathBuf>;
}
Expand description

Trait to allow getting a log directory from either a bp3d_fs::dirs::App or a String.

Required Methods

Gets the log directory as a PathBuf.

Returns None if no directory could be computed.

Implementations on Foreign Types

Implementors