pub trait ModelEntryFuture<const N: usize> {
type ModelEntry: ModelEntry;
// Required methods
fn into_done(self) -> Option<Self::ModelEntry>;
fn get_done(&self) -> Option<&Self::ModelEntry>;
}Required Associated Types§
type ModelEntry: ModelEntry
Required Methods§
fn into_done(self) -> Option<Self::ModelEntry>
fn get_done(&self) -> Option<&Self::ModelEntry>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".