Skip to main content

new

Function new 

Source
pub const fn new() -> Builder
Expand description

Start building new options.

Call Builder::build to construct them.

ยงExamples

use musli::options::{self, Integer, Options};

const OPTIONS: Options = options::new().integer(Integer::Fixed).build();