pub struct SimpleMetadataStore {
pub data: Arc<RwLock<HashMap<Uuid, JobStoredData>>>,
pub inited: bool,
}
Fields§
§data: Arc<RwLock<HashMap<Uuid, JobStoredData>>>
§inited: bool
Trait Implementations§
Source§impl Default for SimpleMetadataStore
impl Default for SimpleMetadataStore
Source§impl MetaDataStorage for SimpleMetadataStore
impl MetaDataStorage for SimpleMetadataStore
fn list_next_ticks( &mut self, ) -> Pin<Box<dyn Future<Output = Result<Vec<JobAndNextTick>, JobSchedulerError>> + Send>>
fn set_next_and_last_tick( &mut self, guid: Uuid, next_tick: Option<DateTime<Utc>>, last_tick: Option<DateTime<Utc>>, ) -> Pin<Box<dyn Future<Output = Result<(), JobSchedulerError>> + Send>>
fn time_till_next_job( &mut self, ) -> Pin<Box<dyn Future<Output = Result<Option<Duration>, JobSchedulerError>> + Send>>
Auto Trait Implementations§
impl Freeze for SimpleMetadataStore
impl !RefUnwindSafe for SimpleMetadataStore
impl Send for SimpleMetadataStore
impl Sync for SimpleMetadataStore
impl Unpin for SimpleMetadataStore
impl !UnwindSafe for SimpleMetadataStore
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