libadwaita/
carousel.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3use crate::Carousel;
4use glib::translate::*;
5
6impl Carousel {
7    #[doc(alias = "adw_carousel_get_nth_page")]
8    #[doc(alias = "get_nth_page")]
9    pub fn nth_page(&self, n: u32) -> gtk::Widget {
10        assert!(n < self.n_pages());
11        unsafe { from_glib_none(ffi::adw_carousel_get_nth_page(self.to_glib_none().0, n)) }
12    }
13}