pub struct TransformsConfig {
pub pipeline: PipelineSection,
pub stages: Vec<ConfiguredStage>,
}Expand description
Validated transform pipeline configuration (from TOML).
Fields§
§pipeline: PipelineSectionShared window / failure options (from [pipeline]).
stages: Vec<ConfiguredStage>Real stages after collapsing passthrough-only entries.
Implementations§
Source§impl TransformsConfig
impl TransformsConfig
Sourcepub fn is_identity(&self) -> bool
pub fn is_identity(&self) -> bool
Whether this config yields an empty / identity pipeline.
Trait Implementations§
Source§impl Clone for TransformsConfig
impl Clone for TransformsConfig
Source§fn clone(&self) -> TransformsConfig
fn clone(&self) -> TransformsConfig
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 TransformsConfig
impl Debug for TransformsConfig
Source§impl Default for TransformsConfig
impl Default for TransformsConfig
Source§fn default() -> TransformsConfig
fn default() -> TransformsConfig
Returns the “default value” for a type. Read more
impl Eq for TransformsConfig
Source§impl PartialEq for TransformsConfig
impl PartialEq for TransformsConfig
impl StructuralPartialEq for TransformsConfig
Auto Trait Implementations§
impl Freeze for TransformsConfig
impl RefUnwindSafe for TransformsConfig
impl Send for TransformsConfig
impl Sync for TransformsConfig
impl Unpin for TransformsConfig
impl UnsafeUnpin for TransformsConfig
impl UnwindSafe for TransformsConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.