We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dda39a0 commit ba9d3bdCopy full SHA for ba9d3bd
src/config/transform.rs
@@ -3,7 +3,6 @@ use std::collections::{HashMap, HashSet};
3
4
use async_trait::async_trait;
5
use dyn_clone::DynClone;
6
-use enum_dispatch::enum_dispatch;
7
use serde::Serialize;
8
use vector_config::{
9
configurable_component,
@@ -170,7 +169,6 @@ impl TransformContext {
170
169
171
/// Generalized interface for describing and building transform components.
172
#[async_trait]
173
-#[enum_dispatch]
174
#[typetag::serde(tag = "type")]
175
pub trait TransformConfig: DynClone + NamedComponent + core::fmt::Debug + Send + Sync {
176
/// Builds the transform with the given context.
0 commit comments