pub struct ReadmeInfo {
pub title: Option<String>,
pub owner: String,
pub description: String,
pub meta: HashMap<String, Value>,
}Expand description
Information extracted from a README file
Fields§
§title: Option<String>Optional title extracted from the first markdown heading
owner: StringOwner of the feature
description: StringDescription content (everything after the first heading)
meta: HashMap<String, Value>Additional metadata from YAML frontmatter
Auto Trait Implementations§
impl Freeze for ReadmeInfo
impl RefUnwindSafe for ReadmeInfo
impl Send for ReadmeInfo
impl Sync for ReadmeInfo
impl Unpin for ReadmeInfo
impl UnwindSafe for ReadmeInfo
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