Struct qbit_api_rs::types::SyncMaindataResponse
source · pub struct SyncMaindataResponse {
pub rid: u64,
pub full_update: Option<bool>,
pub torrents: Option<SyncMaindataTorrentsResponse>,
pub torrents_removed: Option<Vec<String>>,
pub categories: Option<TorrentsCategoriesResponse>,
pub categories_removed: Option<Vec<String>>,
pub tags: Option<Vec<String>>,
pub tags_removed: Option<Vec<String>>,
pub queueing: Option<bool>,
pub server_state: Option<ServerState>,
}
Expand description
Fields§
§rid: u64
§full_update: Option<bool>
§torrents: Option<SyncMaindataTorrentsResponse>
§torrents_removed: Option<Vec<String>>
§categories: Option<TorrentsCategoriesResponse>
§categories_removed: Option<Vec<String>>
§queueing: Option<bool>
§server_state: Option<ServerState>
Trait Implementations§
source§impl Debug for SyncMaindataResponse
impl Debug for SyncMaindataResponse
source§impl<'de> Deserialize<'de> for SyncMaindataResponse
impl<'de> Deserialize<'de> for SyncMaindataResponse
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 RefUnwindSafe for SyncMaindataResponse
impl Send for SyncMaindataResponse
impl Sync for SyncMaindataResponse
impl Unpin for SyncMaindataResponse
impl UnwindSafe for SyncMaindataResponse
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