Guest User

Untitled

a guest
Jan 16th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. struct Pipeline<S, D> {
  2. tf: Transform<S, D>,
  3. }
  4.  
  5. struct Transform<S, D> {
  6. prev: Transform<S, X>,
  7. tf: Box<Fn(X) -> D>,
  8. }
  9.  
  10.  
  11. fn main() {
  12.  
  13. }
Add Comment
Please, Sign In to add comment