usecrate::size;usederive_more::From;usesmart_default::SmartDefault;/// Information to return from `get_info` of [`super::TreeBuilder`].
#[derive(Debug, SmartDefault, From)]pubstructInfo<Name, Size:size::Size>{/// Size associated with given `path`.
pubsize: Size,
/// Direct descendants of given `path`.
pubchildren:Vec<Name>,
}