pub struct TaskOptions {Show 15 fields
pub header: Option<Vec<String>>,
pub split: Option<i32>,
pub all_proxy: Option<String>,
pub dir: Option<String>,
pub out: Option<String>,
pub gid: Option<String>,
pub continue: Option<bool>,
pub auto_file_renaming: Option<bool>,
pub check_integrity: Option<bool>,
pub lowest_speed_limit: Option<String>,
pub max_download_limit: Option<String>,
pub max_connection_per_server: Option<i32>,
pub max_tries: Option<i32>,
pub timeout: Option<i32>,
pub extra_options: Map<String, Value>,
}Expand description
Regular options of aria2 download tasks.
For more options, add them to extra_options field, which is Object in serde_json.
You can find all options in https://aria2.github.io/manual/en/html/aria2c.html#input-file
Fields§
§header: Option<Vec<String>>§split: Option<i32>§all_proxy: Option<String>§dir: Option<String>§out: Option<String>§gid: Option<String>§continue: Option<bool>§auto_file_renaming: Option<bool>§check_integrity: Option<bool>§lowest_speed_limit: Option<String>Close connection if download speed is lower than or equal to this value(bytes per sec).
0 means aria2 does not have a lowest speed limit.
You can append K or M (1K = 1024, 1M = 1024K).
This option does not affect BitTorrent downloads.
Default: 0
max_download_limit: Option<String>Set max download speed per each download in bytes/sec. 0 means unrestricted.
You can append K or M (1K = 1024, 1M = 1024K).
To limit the overall download speed, use –max-overall-download-limit option.
Default: 0
max_connection_per_server: Option<i32>§max_tries: Option<i32>§timeout: Option<i32>§extra_options: Map<String, Value>Trait Implementations§
Source§impl Clone for TaskOptions
impl Clone for TaskOptions
Source§fn clone(&self) -> TaskOptions
fn clone(&self) -> TaskOptions
Returns a duplicate of the value. Read more
1.0.0 · 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 TaskOptions
impl Debug for TaskOptions
Source§impl Default for TaskOptions
impl Default for TaskOptions
Source§fn default() -> TaskOptions
fn default() -> TaskOptions
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TaskOptions
impl<'de> Deserialize<'de> for TaskOptions
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 PartialEq for TaskOptions
impl PartialEq for TaskOptions
Source§impl Serialize for TaskOptions
impl Serialize for TaskOptions
impl Eq for TaskOptions
impl StructuralPartialEq for TaskOptions
Auto Trait Implementations§
impl Freeze for TaskOptions
impl RefUnwindSafe for TaskOptions
impl Send for TaskOptions
impl Sync for TaskOptions
impl Unpin for TaskOptions
impl UnwindSafe for TaskOptions
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