use crate::foundation::NSUInteger;
#[derive(Debug)]
pub enum ProgressIndicatorStyle {
Bar,
Spinner
}
impl From<ProgressIndicatorStyle> for NSUInteger {
fn from(style: ProgressIndicatorStyle) -> Self {
match style {
ProgressIndicatorStyle::Bar => 0,
ProgressIndicatorStyle::Spinner => 1
}
}
}