Struct ipfs_api::response::BitswapStatResponse [] [src]

pub struct BitswapStatResponse {
    pub provide_buf_len: i32,
    pub wantlist: Vec<String>,
    pub peers: Vec<String>,
    pub blocks_received: u64,
    pub data_received: u64,
    pub blocks_sent: u64,
    pub data_sent: u64,
    pub dup_blks_received: u64,
    pub dup_data_received: u64,
}

Fields

Trait Implementations

impl Debug for BitswapStatResponse
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations