pub struct PageEntry {
pub name: String,
pub is_dir: bool,
pub children: Vec<PageEntry>,
}
Fields§
§name: String
§is_dir: bool
§children: Vec<PageEntry>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PageEntry
impl RefUnwindSafe for PageEntry
impl Send for PageEntry
impl Sync for PageEntry
impl Unpin for PageEntry
impl UnwindSafe for PageEntry
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