pub trait AutofillBuilderExt: Sized {
    type Node: Node;
    type DecoratedBuilder<C: Config<Node = Self::Node> + 'static>;

    fn fill_gaps<C>(self, config: C) -> Self::DecoratedBuilder<C>
    where
        C: Config<Node = Self::Node> + 'static
; }
Expand description

Extends NodeBuilder to conveniently decorate a node with Autofill.

Required Associated Types

Type of node to be decorated.

Type of builder after Autofill decoration is applied with config C.

Required Methods

Decorates the node with Autofill using the given configuration.

Implementors