pub struct Trackers {
pub q: TrackersQuery,
}
Expand description
§/api/v2/torrents/trackers
Fields§
§q: TrackersQuery
Trait Implementations§
Source§impl Endpoint for Trackers
impl Endpoint for Trackers
Source§type Query = TrackersQuery
type Query = TrackersQuery
define type of query, form and response
type Form = ()
type Response = Vec<TrackersResponseItem>
Source§fn relative_path(&self) -> Cow<'_, str>
fn relative_path(&self) -> Cow<'_, str>
The endpoint relative path. Must start with a
/
Source§fn check_status(&self, status: StatusCode) -> Option<ClientError>
fn check_status(&self, status: StatusCode) -> Option<ClientError>
Check the status code
Auto Trait Implementations§
impl Freeze for Trackers
impl RefUnwindSafe for Trackers
impl Send for Trackers
impl Sync for Trackers
impl Unpin for Trackers
impl UnwindSafe for Trackers
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