pub trait BackForwardListItemExt: 'static {
    fn original_uri(&self) -> Option<GString>;
    fn title(&self) -> Option<GString>;
    fn uri(&self) -> Option<GString>;
}
Expand description

Required Methods

Obtain the original URI of the item.

See also uri().

Returns

the original URI of self or None when the original URI is empty.

Obtain the title of the item.

Returns

the page title of self or None when the title is empty.

Obtain the URI of the item.

This URI may differ from the original URI if the page was, for example, redirected to a new location. See also original_uri().

Returns

the URI of self or None when the URI is empty.

Implementors