Struct ScheduleEntry

Source
pub struct ScheduleEntry {
    schedule_type: ScheduleType,
    start_time: NaiveTime,
    stop_time: NaiveTime,
    is_active: bool,
}
Expand description

Contains one schedule data set after post-processing

Fields§

§schedule_type: ScheduleType

Schedule type (either Balling, Refill, Ventilation or Heating)

§start_time: NaiveTime

Time of day from which on the control shall be active

§stop_time: NaiveTime

Time of day from which on the control shall not be active

§is_active: bool

Flag describing if the schedule entry is active

Implementations§

Source§

impl ScheduleEntry

Source

pub fn new( sql_schedule_entry: SqlScheduleEntry, ) -> Result<ScheduleEntry, SqlInterfaceError>

Creates a new ScheduleEntry by converting raw data from an SqlScheduleEntry.

This constructor takes a SqlScheduleEntry (typically read from the database) and performs necessary type conversions, such as transforming string representations of the schedule type and times into their respective Rust types.

§Arguments
  • sql_schedule_entry - A struct containing the raw schedule data from the SQL database.
§Returns

A Result containing a new, fully typed ScheduleEntry on success.

§Errors

This function will return an Err variant of SqlInterfaceError if:

  • The schedule_type string cannot be parsed into a valid ScheduleType enum (ScheduleTypeConversionFailure).
Source

pub fn check_if_allowed(&self) -> bool

Determines if the current local time falls within the allowed time window of this schedule entry.

This function compares the system’s current local time (Local::now().time()) against the start_time and stop_time defined in this ScheduleEntry.

§Returns
  • true: If the current local time is on or after start_time AND on or before stop_time.
  • false: Given an active schedule limitation: If the current local time is outside this inclusive window.

Trait Implementations§

Source§

impl Debug for ScheduleEntry

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> ErasedDestructor for T
where T: 'static,

Source§

impl<T> MaybeSendSync for T