pub struct PullEntry {
pub result: ParsedSearchResult,
pub torrent_id: Option<i64>,
pub torrent_hash: String,
pub state: PullState,
pub files: Vec<String>,
}
Fields§
§result: ParsedSearchResult
§torrent_id: Option<i64>
§torrent_hash: String
§state: PullState
§files: Vec<String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PullEntry
impl<'de> Deserialize<'de> for PullEntry
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 Freeze for PullEntry
impl RefUnwindSafe for PullEntry
impl Send for PullEntry
impl Sync for PullEntry
impl Unpin for PullEntry
impl UnwindSafe for PullEntry
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