Running into issue where I need to know the type to create new tree node elements.

This commit is contained in:
Tom Alexander
2020-05-31 16:40:39 -04:00
parent ff27c2c85d
commit 92dca74505
2 changed files with 53 additions and 1 deletions

View File

@@ -12,7 +12,7 @@ pub struct BreadcrumbTreeNode<'a, C: IntoContextElement> {
element: BreadcrumbTreeNodeElement<'a, C>,
}
enum BreadcrumbTreeNodeElement<'a, C: IntoContextElement> {
pub enum BreadcrumbTreeNodeElement<'a, C: IntoContextElement> {
Owned(C),
Borrowed(&'a C),
}