1 2 3 4 5 6 7
use quantlib::bonds::Bond; fn main() { let b = Bond { ytm: 40 }; println!("b: {:?}", b); }