pub struct SqlScheduleEntry {
schedule_type: String,
start_time: NaiveTime,
stop_time: NaiveTime,
is_active: u32,
}Expand description
Contains one schedule data set as read from the database
Fields§
§schedule_type: StringSchedule type (either Balling, Refill, Ventilation or Heating)
start_time: NaiveTimeTime of day from which on the control shall be active
stop_time: NaiveTimeTime of day from which on the control shall not be active
is_active: u32Flag describing if the schedule entry is active
Auto Trait Implementations§
impl Freeze for SqlScheduleEntry
impl RefUnwindSafe for SqlScheduleEntry
impl Send for SqlScheduleEntry
impl Sync for SqlScheduleEntry
impl Unpin for SqlScheduleEntry
impl UnwindSafe for SqlScheduleEntry
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