pub struct HttpScrapeResponse {
pub files: HashMap<Id20, ScrapeInfo>,
}Expand description
HTTP scrape response containing per-torrent stats.
Fields§
§files: HashMap<Id20, ScrapeInfo>Per-torrent scrape statistics keyed by info hash.
Trait Implementations§
Source§impl Clone for HttpScrapeResponse
impl Clone for HttpScrapeResponse
Source§fn clone(&self) -> HttpScrapeResponse
fn clone(&self) -> HttpScrapeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for HttpScrapeResponse
impl RefUnwindSafe for HttpScrapeResponse
impl Send for HttpScrapeResponse
impl Sync for HttpScrapeResponse
impl Unpin for HttpScrapeResponse
impl UnsafeUnpin for HttpScrapeResponse
impl UnwindSafe for HttpScrapeResponse
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