pub struct LinkedNote {
pub path: String,
pub name: String,
pub depth: usize,
pub links: Vec<String>,
}Fields§
§path: String§name: String§depth: usize§links: Vec<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for LinkedNote
impl RefUnwindSafe for LinkedNote
impl Send for LinkedNote
impl Sync for LinkedNote
impl Unpin for LinkedNote
impl UnsafeUnpin for LinkedNote
impl UnwindSafe for LinkedNote
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