pub struct TaxonomySectionView<'a> {
pub role: &'a str,
pub nodes: Vec<TaxonomyTreeNode<'a>>,
}Expand description
One presentation role section in a taxonomy view.
Fields§
§role: &'a strThe extended link role URI identifying this section.
nodes: Vec<TaxonomyTreeNode<'a>>Root concept nodes for this presentation section.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for TaxonomySectionView<'a>
impl<'a> RefUnwindSafe for TaxonomySectionView<'a>
impl<'a> Send for TaxonomySectionView<'a>
impl<'a> Sync for TaxonomySectionView<'a>
impl<'a> Unpin for TaxonomySectionView<'a>
impl<'a> UnsafeUnpin for TaxonomySectionView<'a>
impl<'a> UnwindSafe for TaxonomySectionView<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more