pub struct AutomationsStatusResult {
pub scheduler_enabled: bool,
pub read_api_enabled: bool,
pub server_id: String,
pub server_role: String,
pub store_path: String,
pub last_tick_at: Option<OffsetDateTime>,
pub next_tick_at: Option<OffsetDateTime>,
pub active_runs: usize,
pub due_count: usize,
pub leased_count: usize,
}Fields§
§scheduler_enabled: bool§read_api_enabled: bool§server_id: String§server_role: String§store_path: String§last_tick_at: Option<OffsetDateTime>§next_tick_at: Option<OffsetDateTime>§active_runs: usize§due_count: usize§leased_count: usizeTrait Implementations§
Source§impl Clone for AutomationsStatusResult
impl Clone for AutomationsStatusResult
Source§fn clone(&self) -> AutomationsStatusResult
fn clone(&self) -> AutomationsStatusResult
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 Debug for AutomationsStatusResult
impl Debug for AutomationsStatusResult
Source§impl<'de> Deserialize<'de> for AutomationsStatusResult
impl<'de> Deserialize<'de> for AutomationsStatusResult
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
Auto Trait Implementations§
impl Freeze for AutomationsStatusResult
impl RefUnwindSafe for AutomationsStatusResult
impl Send for AutomationsStatusResult
impl Sync for AutomationsStatusResult
impl Unpin for AutomationsStatusResult
impl UnsafeUnpin for AutomationsStatusResult
impl UnwindSafe for AutomationsStatusResult
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