Function dump_memory_with_raw_client

Source
pub async fn dump_memory_with_raw_client<FnTy>(
    client: &Client,
    mion_ip: Ipv4Addr,
    resume_at: Option<usize>,
    early_stop_at: Option<usize>,
    buff_callback: FnTy,
) -> Result<(), CatBridgeError>
where FnTy: FnMut(Vec<u8>) + Send + Sync,
Expand description

Perform a memory dump request, but with an already existing HTTP client.

ยงErrors

  • If we cannot encode the parameters as a form url encoded.
  • If we cannot make the HTTP request.
  • If the server does not respond with a 200.
  • If we cannot read the body from HTTP.
  • If we cannot parse the HTML response.