pub struct Torrent {
pub url: String,
pub hash: String,
pub quality: String,
pub _type: String,
pub seeds: u32,
pub peers: u32,
pub size: String,
pub size_bytes: u64,
pub date_uploaded: String,
pub date_uploaded_unix: u64,
}Fields§
§url: String§hash: String§quality: String§_type: String§seeds: u32§peers: u32§size: String§size_bytes: u64§date_uploaded: String§date_uploaded_unix: u64Trait Implementations§
source§impl<'de> Deserialize<'de> for Torrent
impl<'de> Deserialize<'de> for Torrent
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<Torrent> for Torrent
impl PartialEq<Torrent> for Torrent
impl Eq for Torrent
impl StructuralEq for Torrent
impl StructuralPartialEq for Torrent
Auto Trait Implementations§
impl RefUnwindSafe for Torrent
impl Send for Torrent
impl Sync for Torrent
impl Unpin for Torrent
impl UnwindSafe for Torrent
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.