pub trait PathKey: Display + PartialEq + Eq + Hash + Clone + Sized {
    fn all() -> &'static [Self]Notable traits for &[u8]impl<'_> Read for &[u8]impl<'_> Write for &mut [u8];

    fn local_results_prefix() -> &'static str { ... }
    fn public_results_prefix() -> &'static str { ... }
}
Expand description

Key for differentiating between kinds of test outputs

Required Methods

Return the list of all possible test output kinds

Provided Methods

Return the directory name for the local results

Return the directory name for the public results

Implementors