pub struct SectionView<'a> {
pub role: &'a str,
pub nodes: Vec<TreeNode<'a>>,
}Expand description
One report section (extended link role) from the presentation linkbase.
Fields§
§role: &'a strThe extended link role URI identifying this section.
nodes: Vec<TreeNode<'a>>Root nodes of the presentation tree for this section.
Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for SectionView<'a>
impl<'a> RefUnwindSafe for SectionView<'a>
impl<'a> Send for SectionView<'a>
impl<'a> Sync for SectionView<'a>
impl<'a> Unpin for SectionView<'a>
impl<'a> UnsafeUnpin for SectionView<'a>
impl<'a> UnwindSafe for SectionView<'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