pub enum ProcessorKind {
ReadmeToPDF,
FlattenFiles,
}Expand description
Types/kinds of processing strategy.
Variants§
ReadmeToPDF
For each source, outputs a single PDF (README.md converted)
FlattenFiles
Flattens all files in the repo, uploading them with directory encoded in name
Trait Implementations§
Source§impl Clone for ProcessorKind
impl Clone for ProcessorKind
Source§fn clone(&self) -> ProcessorKind
fn clone(&self) -> ProcessorKind
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProcessorKind
impl Debug for ProcessorKind
Auto Trait Implementations§
impl Freeze for ProcessorKind
impl RefUnwindSafe for ProcessorKind
impl Send for ProcessorKind
impl Sync for ProcessorKind
impl Unpin for ProcessorKind
impl UnsafeUnpin for ProcessorKind
impl UnwindSafe for ProcessorKind
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