[][src]Struct async_aria2::json::Status

pub struct Status {
    pub bitfield: String,
    pub bittorrent: Option<Bittorrent>,
    pub completed_length: String,
    pub connections: String,
    pub dir: String,
    pub download_speed: String,
    pub files: Vec<File>,
    pub gid: String,
    pub info_hash: Option<String>,
    pub num_pieces: String,
    pub num_seeders: Option<String>,
    pub piece_length: String,
    pub seeder: Option<String>,
    pub status: String,
    pub total_length: String,
    pub upload_length: String,
    pub upload_speed: String,
}

Fields

bitfield: Stringbittorrent: Option<Bittorrent>completed_length: Stringconnections: Stringdir: Stringdownload_speed: Stringfiles: Vec<File>gid: Stringinfo_hash: Option<String>num_pieces: Stringnum_seeders: Option<String>piece_length: Stringseeder: Option<String>status: Stringtotal_length: Stringupload_length: Stringupload_speed: String

Trait Implementations

impl Debug for Status[src]

impl<'de> Deserialize<'de> for Status[src]

Auto Trait Implementations

impl RefUnwindSafe for Status

impl Send for Status

impl Sync for Status

impl Unpin for Status

impl UnwindSafe for Status

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,