pub struct NoteEntry {
pub name: String,
pub parent_dir: String,
pub is_dir: bool,
}Expand description
A single file/directory entry from a markdown knowledge base.
Fields§
§name: StringFilename with extension (e.g., "Rust.md").
parent_dir: StringParent directory (e.g., "brain" or "/").
is_dir: boolWhether this entry is a directory.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NoteEntry
impl RefUnwindSafe for NoteEntry
impl Send for NoteEntry
impl Sync for NoteEntry
impl Unpin for NoteEntry
impl UnsafeUnpin for NoteEntry
impl UnwindSafe for NoteEntry
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