StepInput

Trait StepInput 

Source
pub trait StepInput: Serialize { }
Expand description

When the recording feature is enabled, inputs must implement the serde::Serialize trait

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> StepInput for T
where T: Serialize,

Available on crate feature recording only.