Docs.rs
  • webkit2gtk-0.18.2
    • webkit2gtk 0.18.2
    • Docs.rs crate page
    • MIT
    • Links
    • Repository
    • crates.io
    • Source
    • Owners
    • GuillaumeGomez
    • antoyo
    • tauri-bot
    • Dependencies
      • bitflags ^1.0 normal
      • cairo-rs ^0.15.0 normal
      • webkit2gtk-sys ^0.18 normal
      • gdk ^0.15.0 normal
      • gdk-sys ^0.15.0 normal
      • gio ^0.15.0 normal
      • gio-sys ^0.15.0 normal
      • glib ^0.15.0 normal
      • glib-sys ^0.15.0 normal
      • gobject-sys ^0.15.0 normal
      • gtk ^0.15.0 normal
      • gtk-sys ^0.15.0 normal
      • javascriptcore-rs ^0.16.0 normal
      • libc ^0.2 normal
      • once_cell ^1.8 normal
      • soup2 ^0.2.0 normal
    • Versions
    • 100% of the crate is documented
  • Go to latest version
  • Platform
    • x86_64-unknown-linux-gnu
  • Feature flags
  • docs.rs
    • About docs.rs
    • Privacy policy
  • Rust
    • Rust website
    • The Book
    • Standard Library API Reference
    • Rust by Example
    • The Cargo Guide
    • Clippy Documentation
logo

logo

BackForwardListExt

Required Methods

  • back_item
  • back_list
  • back_list_with_limit
  • current_item
  • forward_item
  • forward_list
  • forward_list_with_limit
  • length
  • nth_item

Implementors

In webkit2gtk

logo
?
Change settings

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>;
}

Required Methods

source

fn back_item(&self) -> Option<BackForwardListItem>

source

fn back_list(&self) -> Vec<BackForwardListItem>

source

fn back_list_with_limit(&self, limit: u32) -> Vec<BackForwardListItem>

source

fn current_item(&self) -> Option<BackForwardListItem>

source

fn forward_item(&self) -> Option<BackForwardListItem>

source

fn forward_list(&self) -> Vec<BackForwardListItem>

source

fn forward_list_with_limit(&self, limit: u32) -> Vec<BackForwardListItem>

source

fn length(&self) -> u32

source

fn nth_item(&self, index: i32) -> Option<BackForwardListItem>

Implementors

source

impl<O: IsA<BackForwardList>> BackForwardListExt for O