Enum ffsend_api::crypto::b64::LineWrap [−][src]
pub enum LineWrap {
NoWrap,
Wrap(usize, LineEnding),
}Line wrap configuration.
Variants
NoWrapDon'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]
impl Clone for LineWrapfn clone(&self) -> LineWrap[src]
fn clone(&self) -> LineWrapReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
impl Debug for LineWrap[src]
impl Debug for LineWrapfn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl Copy for LineWrap[src]
impl Copy for LineWrap