pub struct PreprocessingStep {
pub name: String,
pub params: HashMap<String, String>,
pub order: u32,
}Expand description
A preprocessing step applied to the document.
Fields§
§name: StringName of the step
params: HashMap<String, String>Parameters/configuration
order: u32Order in the pipeline (0 = first)
Implementations§
Trait Implementations§
Source§impl Clone for PreprocessingStep
impl Clone for PreprocessingStep
Source§fn clone(&self) -> PreprocessingStep
fn clone(&self) -> PreprocessingStep
Returns a duplicate of the value. Read more
1.0.0 · 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 PreprocessingStep
impl Debug for PreprocessingStep
Source§impl<'de> Deserialize<'de> for PreprocessingStep
impl<'de> Deserialize<'de> for PreprocessingStep
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PreprocessingStep
impl PartialEq for PreprocessingStep
Source§impl Serialize for PreprocessingStep
impl Serialize for PreprocessingStep
impl StructuralPartialEq for PreprocessingStep
Auto Trait Implementations§
impl Freeze for PreprocessingStep
impl RefUnwindSafe for PreprocessingStep
impl Send for PreprocessingStep
impl Sync for PreprocessingStep
impl Unpin for PreprocessingStep
impl UnsafeUnpin for PreprocessingStep
impl UnwindSafe for PreprocessingStep
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