pub trait BuilderFor: Sized + EncoderFor<Self::Message> {
type Message: 'static;
}
Expand description
Marks a type as a builder for a given message.
Required Associated Types§
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.