pub struct SqlFeedScheduleEntry {
pub timestamp: NaiveDateTime,
pub profile_id: i32,
pub profile_name: String,
pub repeat_daily: i16,
}Expand description
Holds the data of a feed schedule entry as retrieved from the database. It is post-processed in a further step.
Fields§
§timestamp: NaiveDateTime§profile_id: i32§profile_name: String§repeat_daily: i16Auto Trait Implementations§
impl Freeze for SqlFeedScheduleEntry
impl RefUnwindSafe for SqlFeedScheduleEntry
impl Send for SqlFeedScheduleEntry
impl Sync for SqlFeedScheduleEntry
impl Unpin for SqlFeedScheduleEntry
impl UnwindSafe for SqlFeedScheduleEntry
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