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§

Required Methods§

source

fn into_done(self) -> Option<Self::ModelEntry>

source

fn get_done(&self) -> Option<&Self::ModelEntry>

Implementors§