cacao/src/progress/enums.rs

21 lines
445 B
Rust
Raw Normal View History

2022-07-16 00:14:02 +10:00
use crate::foundation::NSUInteger;
/// The type of spinner style you're after.
#[derive(Debug)]
pub enum ProgressIndicatorStyle {
/// A loading bar.
Bar,
/// A spinning circle.
Spinner
}
impl From<ProgressIndicatorStyle> for NSUInteger {
fn from(style: ProgressIndicatorStyle) -> Self {
match style {
ProgressIndicatorStyle::Bar => 0,
ProgressIndicatorStyle::Spinner => 1
}
}
}