We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0b1fb89 + 9762698 commit 8440036Copy full SHA for 8440036
src/libextra/base64.rs
@@ -22,11 +22,11 @@ pub enum CharacterSet {
22
/// Contains configuration parameters for `to_base64`.
23
pub struct Config {
24
/// Character set to use
25
- priv char_set: CharacterSet,
+ char_set: CharacterSet,
26
/// True to pad output with `=` characters
27
- priv pad: bool,
+ pad: bool,
28
/// `Some(len)` to wrap lines at `len`, `None` to disable line wrapping
29
- priv line_length: Option<uint>
+ line_length: Option<uint>
30
}
31
32
/// Configuration for RFC 4648 standard base64 encoding
0 commit comments