pub fn encode_binary_to_str<R: AsRef<[u8]>>(input: R) -> String
Expand description

Encodes some bytes into quoted-printable format.

The difference to encode_binary is that this function returns a String.

The quoted-printable transfer-encoding is defined in IETF RFC 2045, section 6.7. This function encodes a set of raw bytes into a format conformant with that spec. The output contains CRLF pairs as needed so that each line is wrapped to 76 characters or less (not including the CRLF).

Examples

    use quoted_printable::encode_binary_to_str;
    let encoded = encode_binary_to_str("hello, \u{20ac} zone!\r\n");
    assert_eq!("hello, =E2=82=AC zone!=0D=0A", encoded);