pub struct TableStructureEntry<'table> {
pub name: &'table str,
pub children: Vec<Child<'table>>,
}
Expand description
An entry returned from a TableStructure
iterator.
Fields§
§name: &'table str
This entry’s name, which can still include slashes.
children: Vec<Child<'table>>
A vector of sorted child names, which should have no slashes in.
Trait Implementations§
Source§impl<'table> Debug for TableStructureEntry<'table>
impl<'table> Debug for TableStructureEntry<'table>
Source§impl<'table> PartialEq for TableStructureEntry<'table>
impl<'table> PartialEq for TableStructureEntry<'table>
impl<'table> StructuralPartialEq for TableStructureEntry<'table>
Auto Trait Implementations§
impl<'table> Freeze for TableStructureEntry<'table>
impl<'table> RefUnwindSafe for TableStructureEntry<'table>
impl<'table> Send for TableStructureEntry<'table>
impl<'table> Sync for TableStructureEntry<'table>
impl<'table> Unpin for TableStructureEntry<'table>
impl<'table> UnwindSafe for TableStructureEntry<'table>
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