pub struct Pipeline { /* private fields */ }Expand description
A composable pipeline that parses an RDX document and runs a chain of transforms.
§Example
use rdx_transform::{Pipeline, AutoSlug, TableOfContents};
let root = Pipeline::new()
.add(AutoSlug::new())
.add(TableOfContents::default())
.run("# Hello\n\n## World\n");Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pipeline
impl !RefUnwindSafe for Pipeline
impl !Send for Pipeline
impl !Sync for Pipeline
impl Unpin for Pipeline
impl UnsafeUnpin for Pipeline
impl !UnwindSafe for Pipeline
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