pub struct DayEntry {
pub day_entry_id: Option<u32>,
pub start_time: Option<u16>,
pub duration: Option<u16>,
pub randomization_offset: Option<i16>,
pub randomization_type: Option<DayEntryRandomizationType>,
}Fields§
§day_entry_id: Option<u32>§start_time: Option<u16>§duration: Option<u16>§randomization_offset: Option<i16>§randomization_type: Option<DayEntryRandomizationType>Trait Implementations§
Auto Trait Implementations§
impl Freeze for DayEntry
impl RefUnwindSafe for DayEntry
impl Send for DayEntry
impl Sync for DayEntry
impl Unpin for DayEntry
impl UnwindSafe for DayEntry
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