pub struct ParsedCase {
pub id: String,
pub sources: Vec<String>,
pub title: String,
pub summary: String,
pub sections: Vec<Section>,
}Expand description
A parsed case file with front matter, title, summary, and raw sections.
Fields§
§id: String§sources: Vec<String>§title: String§summary: String§sections: Vec<Section>Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParsedCase
impl RefUnwindSafe for ParsedCase
impl Send for ParsedCase
impl Sync for ParsedCase
impl Unpin for ParsedCase
impl UnsafeUnpin for ParsedCase
impl UnwindSafe for ParsedCase
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