pub struct SearchTi {
pub current_date: RefCell<NaiveDateTime>,
pub end_date: NaiveDateTime,
/* private fields */
}Fields§
§current_date: RefCell<NaiveDateTime>§end_date: NaiveDateTimeImplementations§
Source§impl SearchTi
impl SearchTi
pub fn new( configure: &'static Configure, start_date: NaiveDateTime, end_date: Option<NaiveDateTime>, dir_id: u64, ) -> Self
pub fn next_ti(&self) -> Option<(LinkRecord, NaiveDateTime)>
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for SearchTi
impl !RefUnwindSafe for SearchTi
impl Send for SearchTi
impl !Sync for SearchTi
impl Unpin for SearchTi
impl UnwindSafe for SearchTi
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