use std::marker::PhantomData;
#[derive(Debug, Clone, Copy)]
pub struct ErrNoopStep<ErrType> {
_phantom: PhantomData<ErrType>,
}
impl<ErrType> ErrNoopStep<ErrType> {
pub fn new() -> Self {
Self {
_phantom: PhantomData,
}
}
pub(crate) fn apply(&self, input_err: ErrType) -> ErrType {
input_err
}
}