Why Not Closures
- Closures don't hold much contextual information (for humans).
- Similar to stringly-typed instead of strongly typed.
Closure:
// Trait:
// Fn(&Block, &Block) -> &Block;
// Implementation
let cipher_chain: Box<dyn Fn(&Block, &Block) -> &Block> =
Box::new(|block_current, block_previous| -> Block { /* .. */ });
Trait: