pub struct ParsedNote {
pub title: String,
pub frontmatter: HashMap<String, String>,
pub tags: Vec<String>,
pub links: Vec<Link>,
pub text: String,
}Fields§
§title: String§frontmatter: HashMap<String, String>§links: Vec<Link>§text: StringTrait Implementations§
Source§impl Clone for ParsedNote
impl Clone for ParsedNote
Source§fn clone(&self) -> ParsedNote
fn clone(&self) -> ParsedNote
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedNote
impl RefUnwindSafe for ParsedNote
impl Send for ParsedNote
impl Sync for ParsedNote
impl Unpin for ParsedNote
impl UnsafeUnpin for ParsedNote
impl UnwindSafe for ParsedNote
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