Trait webkit2gtk::BackForwardListExt
source · [−]pub trait BackForwardListExt: 'static {
fn back_item(&self) -> Option<BackForwardListItem>;
fn back_list(&self) -> Vec<BackForwardListItem>;
fn back_list_with_limit(&self, limit: u32) -> Vec<BackForwardListItem>;
fn current_item(&self) -> Option<BackForwardListItem>;
fn forward_item(&self) -> Option<BackForwardListItem>;
fn forward_list(&self) -> Vec<BackForwardListItem>;
fn forward_list_with_limit(&self, limit: u32) -> Vec<BackForwardListItem>;
fn length(&self) -> u32;
fn nth_item(&self, index: i32) -> Option<BackForwardListItem>;
}