pub trait TaskPayload: Sealed + Serialize {
const OPERATION: &'static str;
}Expand description
Sealed trait implemented by SDK-owned typed task builders.
Downstream code should use TaskRequest::custom or GenericTask for
operations that are not yet represented by this crate.
Required Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".