[][src]Trait hyper_multipart_rfc7578::client::multipart::BoundaryGenerator

pub trait BoundaryGenerator {
    fn generate_boundary() -> String;
}

A BoundaryGenerator is a policy to generate a random string to use as a part boundary.

The default generator will build a random string of 6 ascii characters. If you need more complexity, you can implement this, and use it with Form::new.

Examples

use common_multipart_rfc7578::client::multipart::BoundaryGenerator;

struct TestGenerator;

impl BoundaryGenerator for TestGenerator {
    fn generate_boundary() -> String {
        "test".to_string()
    }
}

Required methods

fn generate_boundary() -> String

Generates a String to use as a boundary.

Loading content...

Implementors

Loading content...