Source code

Revision control

Copy as Markdown

Other Tools

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
mod from_threadbound;
use super::{action, dispatch_callback, error, request::BitsRequest, string, BitsService};
mod client;
pub use self::client::ClientInitData;
mod service_task;
pub use self::service_task::{MonitorDownloadTask, StartDownloadTask};
mod request_task;
pub use self::request_task::{
CancelTask, ChangeMonitorIntervalTask, CompleteTask, Priority, ResumeTask,
SetNoProgressTimeoutTask, SetPriorityTask, SuspendTask,
};