pub struct Schedule {
pub schedule_handle: Option<Vec<u8>>,
pub system_mode: Option<u8>,
pub name: Option<String>,
pub preset_handle: Option<Vec<u8>>,
pub transitions: Option<Vec<ScheduleTransition>>,
pub built_in: Option<bool>,
}Fields§
§schedule_handle: Option<Vec<u8>>§system_mode: Option<u8>§name: Option<String>§preset_handle: Option<Vec<u8>>§transitions: Option<Vec<ScheduleTransition>>§built_in: Option<bool>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Schedule
impl RefUnwindSafe for Schedule
impl Send for Schedule
impl Sync for Schedule
impl Unpin for Schedule
impl UnwindSafe for Schedule
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