qml-rs 1.1.0

A Rust implementation of QML background job processing
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Core types for QML.
//!
//! This module contains the fundamental types for job processing,
//! including job definitions and state management.

pub mod job;
pub mod job_state;
pub mod recurring;
pub mod server_info;

pub use job::Job;
pub use job_state::{JobState, JobStateKind};
pub use recurring::RecurringJob;
pub use server_info::ServerInfo;