pub trait Algo {
type Params: Debug + Clone + Validate + DisplaySymbols + Serialize + DeserializeOwned + JsonSchema + Send + 'static;
type Status: Debug + Clone + Default + Serialize + DeserializeOwned + JsonSchema;
const NAME: &'static str;
}
Required Associated Constants§
Required Associated Types§
type Params: Debug + Clone + Validate + DisplaySymbols + Serialize + DeserializeOwned + JsonSchema + Send + 'static
type Status: Debug + Clone + Default + Serialize + DeserializeOwned + JsonSchema
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.