pub struct Assembler;Expand description
A small facade for assembling the opinionated version of ConfigBuilder.
Implementations§
Source§impl Assembler
impl Assembler
Sourcepub fn make_sync_builder(
choices: &AssemblerChoices,
) -> ConfigBuilder<DefaultState>
pub fn make_sync_builder( choices: &AssemblerChoices, ) -> ConfigBuilder<DefaultState>
Creates and returns the opinionated ConfigBuilder in DefaultState.
By default, the choices is config, but a custom name may be
given.
Sourcepub fn make_async_builder(
choices: &AssemblerChoices,
) -> ConfigBuilder<AsyncState>
pub fn make_async_builder( choices: &AssemblerChoices, ) -> ConfigBuilder<AsyncState>
Creates and returns the opinionated ConfigBuilder in AsyncState.
By default, the choices is config, but a custom name may be
given.
Auto Trait Implementations§
impl Freeze for Assembler
impl RefUnwindSafe for Assembler
impl Send for Assembler
impl Sync for Assembler
impl Unpin for Assembler
impl UnwindSafe for Assembler
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more