pub struct RuntimeSchedulerSettings {
pub interval_secs: u64,
pub run_on_start: bool,
pub max_concurrency: usize,
pub job_id: String,
pub valkey_url: Option<String>,
}Fields§
§interval_secs: u64§run_on_start: bool§max_concurrency: usize§job_id: String§valkey_url: Option<String>Trait Implementations§
Source§impl Clone for RuntimeSchedulerSettings
impl Clone for RuntimeSchedulerSettings
Source§fn clone(&self) -> RuntimeSchedulerSettings
fn clone(&self) -> RuntimeSchedulerSettings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for RuntimeSchedulerSettings
impl ComposeSchema for RuntimeSchedulerSettings
Source§impl Debug for RuntimeSchedulerSettings
impl Debug for RuntimeSchedulerSettings
Source§impl<'de> Deserialize<'de> for RuntimeSchedulerSettings
impl<'de> Deserialize<'de> for RuntimeSchedulerSettings
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for RuntimeSchedulerSettings
impl Serialize for RuntimeSchedulerSettings
Auto Trait Implementations§
impl Freeze for RuntimeSchedulerSettings
impl RefUnwindSafe for RuntimeSchedulerSettings
impl Send for RuntimeSchedulerSettings
impl Sync for RuntimeSchedulerSettings
impl Unpin for RuntimeSchedulerSettings
impl UnsafeUnpin for RuntimeSchedulerSettings
impl UnwindSafe for RuntimeSchedulerSettings
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