pub type WritePageFutureFn<E> = Box<dyn for<'a> Fn(&'a [u8]) -> Pin<Box<dyn Future<Output = Result<(), E>> + 'a>>>;Expand description
A function that takes a reference to the page and writes it to NAND
Aliased Typeยง
struct WritePageFutureFn<E>(/* private fields */);