pub trait PushDeserializedNode<'dtb> {
type Node: DeserializeNode<'dtb>;
// Required method
fn push_node(
&mut self,
node: Self::Node,
_cx: NodeContext<'_>,
) -> Result<()>;
}Expand description
Types that can collect several devicetree nodes.