pub struct DocTask<'a> {
pub output_filename: &'a str,
pub insert_tree: &'a str,
pub id_style: &'a str,
pub tasks: Vec<Task<'a>>,
}Expand description
Struktura definiująca jedno zadanie generowania pliku Markdown
Fields§
§output_filename: &'a str§insert_tree: &'a str§id_style: &'a str§tasks: Vec<Task<'a>>Auto Trait Implementations§
impl<'a> Freeze for DocTask<'a>
impl<'a> RefUnwindSafe for DocTask<'a>
impl<'a> Send for DocTask<'a>
impl<'a> Sync for DocTask<'a>
impl<'a> Unpin for DocTask<'a>
impl<'a> UnsafeUnpin for DocTask<'a>
impl<'a> UnwindSafe for DocTask<'a>
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