Enum base64::LineWrap
[−]
[src]
pub enum LineWrap { NoWrap, Wrap(usize, LineEnding), }
Line wrap configuration.
Variants
NoWrap
Don't wrap.
Wrap(usize, LineEnding)
Wrap lines with the specified length and line ending. The length must be > 0.
Trait Implementations
impl Clone for LineWrap
[src]
fn clone(&self) -> LineWrap
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more