[][src]Trait paxakos::deco::AutoFillGapsBuilderExt

pub trait AutoFillGapsBuilderExt: NodeBuilder {
    fn fill_gaps<C, F>(
        self,
        configure: C
    ) -> NodeBuilderWithAll<AutoFillGaps<Self::Node, F>>
    where
        C: FnOnce(AutoFillGapsBuilderBlank<Self::Node>) -> AutoFillGapsBuilder<Self::Node, F>,
        F: 'static + Fn() -> LogEntryOf<StateOf<Self::Node>>
; fn fill_gaps_with<F>(
        self,
        entry_producer: F
    ) -> NodeBuilderWithAll<AutoFillGaps<Self::Node, F>>
    where
        F: 'static + Fn() -> LogEntryOf<StateOf<Self::Node>>
, { ... } }

Required methods

fn fill_gaps<C, F>(
    self,
    configure: C
) -> NodeBuilderWithAll<AutoFillGaps<Self::Node, F>> where
    C: FnOnce(AutoFillGapsBuilderBlank<Self::Node>) -> AutoFillGapsBuilder<Self::Node, F>,
    F: 'static + Fn() -> LogEntryOf<StateOf<Self::Node>>, 

Loading content...

Provided methods

fn fill_gaps_with<F>(
    self,
    entry_producer: F
) -> NodeBuilderWithAll<AutoFillGaps<Self::Node, F>> where
    F: 'static + Fn() -> LogEntryOf<StateOf<Self::Node>>, 

Loading content...

Implementors

impl<B> AutoFillGapsBuilderExt for B where
    B: NodeBuilder
[src]

Loading content...