mod.rs

Overview

This file serves as a module aggregator, re-exporting two submodules: bk_set and descendant_bk_set. It provides a namespace that groups related functionality in these two modules, facilitating organized and modular access to their contents. The file itself does not contain logic or definitions beyond the module declarations.

Modules

bk_set

descendant_bk_set

Implementation Details

Interaction with Other Components


Module Structure Diagram

flowchart TD
A[mod.rs]
A --> B[bk_set]
A --> C[descendant_bk_set]

This diagram shows mod.rs as the parent module that exposes two submodules, bk_set and descendant_bk_set, representing the modular structure and accessibility within the codebase.