pub struct DownloadClientConfigResource {
pub id: Option<i32>,
pub download_client_working_folders: Option<Option<String>>,
pub enable_completed_download_handling: Option<bool>,
pub check_for_finished_download_interval: Option<i32>,
pub auto_redownload_failed: Option<bool>,
pub auto_redownload_failed_from_interactive_search: Option<bool>,
}
Fields§
§id: Option<i32>
§download_client_working_folders: Option<Option<String>>
§enable_completed_download_handling: Option<bool>
§check_for_finished_download_interval: Option<i32>
§auto_redownload_failed: Option<bool>
§auto_redownload_failed_from_interactive_search: Option<bool>
Implementations§
Source§impl DownloadClientConfigResource
impl DownloadClientConfigResource
pub fn new() -> DownloadClientConfigResource
Trait Implementations§
Source§impl Clone for DownloadClientConfigResource
impl Clone for DownloadClientConfigResource
Source§fn clone(&self) -> DownloadClientConfigResource
fn clone(&self) -> DownloadClientConfigResource
Returns a copy 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 DownloadClientConfigResource
impl Debug for DownloadClientConfigResource
Source§impl<'de> Deserialize<'de> for DownloadClientConfigResource
impl<'de> Deserialize<'de> for DownloadClientConfigResource
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 DownloadClientConfigResource
impl PartialEq for DownloadClientConfigResource
Source§fn eq(&self, other: &DownloadClientConfigResource) -> bool
fn eq(&self, other: &DownloadClientConfigResource) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DownloadClientConfigResource
Auto Trait Implementations§
impl Freeze for DownloadClientConfigResource
impl RefUnwindSafe for DownloadClientConfigResource
impl Send for DownloadClientConfigResource
impl Sync for DownloadClientConfigResource
impl Unpin for DownloadClientConfigResource
impl UnwindSafe for DownloadClientConfigResource
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