pub struct HowToItem {
pub name: Option<String>,
pub description: Option<String>,
pub steps: Vec<HowToStep>,
}Expand description
HowTo item from structured data
Fields§
§name: Option<String>HowTo name/title
description: Option<String>HowTo description
steps: Vec<HowToStep>Steps in the HowTo
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HowToItem
impl RefUnwindSafe for HowToItem
impl Send for HowToItem
impl Sync for HowToItem
impl Unpin for HowToItem
impl UnwindSafe for HowToItem
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