clingo 0.6.0

Rust idiomatic bindings to the clingo library
Documentation
1
2
3
4
5
6
7
8
9
error[E0505]: cannot move out of `args` because it is borrowed
  --> $DIR/ast_function.rs:10:10
   |
9  |     let fun = ast::Function::new(&name, &args).unwrap();
   |                                         ----- borrow of `args` occurs here
10 |     drop(args);
   |          ^^^^ move out of `args` occurs here
11 |     println!("{:?}",fun);
   |                     --- borrow later used here