pub enum OverviewNode {
Section(OverviewSection),
Field(OverviewField),
}Variants§
Section(OverviewSection)
Field(OverviewField)
Trait Implementations§
Source§impl From<OverviewField> for OverviewNode
impl From<OverviewField> for OverviewNode
Source§fn from(field: OverviewField) -> Self
fn from(field: OverviewField) -> Self
Converts to this type from the input type.
Source§impl From<OverviewSection> for OverviewNode
impl From<OverviewSection> for OverviewNode
Source§fn from(section: OverviewSection) -> Self
fn from(section: OverviewSection) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for OverviewNode
impl !UnwindSafe for OverviewNode
impl Freeze for OverviewNode
impl Send for OverviewNode
impl Sync for OverviewNode
impl Unpin for OverviewNode
impl UnsafeUnpin for OverviewNode
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