/** * `&self` means the method takes an immutable reference. * If you need a mutable reference, change it to `&mut self` instead. */ impl MyCalendarThree {
/** * Your MyCalendarThree object will be instantiated and called as such: * let obj = MyCalendarThree::new(); * let ret_1: i32 = obj.book(start, end); */