From 9762698b96a0870a1a75945da58dd439539ac59c Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Wed, 11 Dec 2013 19:27:20 -0800 Subject: [PATCH] Make base64::config fields public again These got swept up in the great privatizing of 2013. --- src/libextra/base64.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libextra/base64.rs b/src/libextra/base64.rs index 0b06ed9d5de62..28a6ba36a710c 100644 --- a/src/libextra/base64.rs +++ b/src/libextra/base64.rs @@ -22,11 +22,11 @@ pub enum CharacterSet { /// Contains configuration parameters for `to_base64`. pub struct Config { /// Character set to use - priv char_set: CharacterSet, + char_set: CharacterSet, /// True to pad output with `=` characters - priv pad: bool, + pad: bool, /// `Some(len)` to wrap lines at `len`, `None` to disable line wrapping - priv line_length: Option + line_length: Option } /// Configuration for RFC 4648 standard base64 encoding