Struct base65536::Config [] [src]

pub struct Config { /* fields omitted */ }

Contains configuration parameters for base65536 encoding/decoding

Methods

impl Config
[src]

Creates a default configuration.

Ignore non-base65536 code points in text.

Without this set, decode and friends are very strict, even failing on line breaks. This is to match behaviour with the original implementation.

Wrap output at a column with a custom string. You should generally use "\n", except on Windows, where you might want to use "\r\n".

Unless called with ignore_garbage set to true, a decoder will fail on output created with this enabled. This is to match behaviour with the original implementation.

Trait Implementations

impl Clone for Config
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Config
[src]

impl Debug for Config
[src]

Formats the value using the given formatter.

impl Default for Config
[src]

Returns the "default value" for a type. Read more