Sample code for 30+ languages & platforms
Rust

Set a Multipart Part Body from a String

See more REST Examples

Demonstrates Rest.SetMultipartBodyString, which sets the text body of the currently selected multipart part.

Background. A multipart request is assembled part by part: the part selector chooses the part being built, header fields describe it, and a SetMultipartBody method supplies its content. The request is then sent with a multipart send or full-request method.

Chilkat Rust Downloads

Rust

let rest = chilkat::Rest::new();
let b_tls = true;
let b_auto_reconnect = true;
if rest.connect("example.com", 443, b_tls, b_auto_reconnect).is_err() {
    println!("{}", rest.last_error_text());
    return;
}

// Select the multipart part to build, and set its header fields.
rest.set_part_selector("1");
let _ = rest.add_header("Content-Disposition", "form-data; name=\"field1\"");
let _ = rest.add_header("Content-Type", "text/plain");

// Set the text body of the selected multipart part.
if rest.set_multipart_body_string("value1").is_err() {
    println!("{}", rest.last_error_text());
    return;
}

// Send the multipart request using the configured part(s).
let Ok(response_text) = rest.full_request_multipart("POST", "/api/upload") else {
    println!("{}", rest.last_error_text());
    return;
};

println!("{}", response_text);