pub struct Schedule {
pub act_schd: ActSchd,
pub mod_ena: ModEna,
pub n_schd: u16,
pub n_pts: u16,
pub repeating: Vec<Repeating>,
}Available on crate feature
model133 only.Expand description
Basic Scheduling
Basic Scheduling
Detail: Ref 2: 2.2.8
Fields§
§act_schd: ActSchdActSchd
Bitfield of active schedules
mod_ena: ModEnaModEna
Is basic scheduling active.
n_schd: u16NSchd
Number of schedules supported (recommend min. 4, max 32)
n_pts: u16NPts
Number of schedule entries supported (maximum of 10).
repeating: Vec<Repeating>Implementations§
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 UnsafeUnpin 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