pub struct TimePickerState {
pub hour: Signal<u32>,
pub minute: Signal<u32>,
pub is_am: Signal<bool>,
}Expand description
State for TimePicker - manages selected hour and minute.
Fields§
§hour: Signal<u32>§minute: Signal<u32>§is_am: Signal<bool>Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for TimePickerState
impl !Send for TimePickerState
impl !Sync for TimePickerState
impl !UnwindSafe for TimePickerState
impl Freeze for TimePickerState
impl Unpin for TimePickerState
impl UnsafeUnpin for TimePickerState
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more