pub trait ReconstructDspfView<T> {
    // Required method
    fn unflatten(
        source: &T,
        nodes: Vec<String>,
        nested_nodes: Vec<String>
    ) -> Self;
}
Expand description

A type that can reconstruct a DSPF view.

Required Methods§

source

fn unflatten(source: &T, nodes: Vec<String>, nested_nodes: Vec<String>) -> Self

Unflatten the container from a set of nodes and nested nodes.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl ReconstructDspfView<()> for ()

source§

fn unflatten( _source: &(), _nodes: Vec<String>, _nested_nodes: Vec<String> ) -> Self

Implementors§