Function dump_memory_with_writer

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

Dump the existing memory for a MION allowing you to write as dumps happen.

ยง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.