1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use enum_map::Enum;
use strum::EnumIter;

pub mod components;
pub mod error;
pub mod mic_profile;
pub mod microphone;
pub mod profile;

#[derive(Debug, Enum, EnumIter, Copy, Clone, PartialEq, Eq, Hash)]
pub enum SampleButtons {
    TopLeft,
    TopRight,
    BottomLeft,
    BottomRight,
    Clear,
}