pub trait ImplNavigationEntry:
Clone
+ Sized
+ Rc {
// Required methods
fn is_valid(&self) -> c_int;
fn url(&self) -> CefStringUserfree;
fn display_url(&self) -> CefStringUserfree;
fn original_url(&self) -> CefStringUserfree;
fn title(&self) -> CefStringUserfree;
fn transition_type(&self) -> TransitionType;
fn has_post_data(&self) -> c_int;
fn completion_time(&self) -> Basetime;
fn http_status_code(&self) -> c_int;
fn sslstatus(&self) -> Option<Sslstatus>;
fn get_raw(&self) -> *mut _cef_navigation_entry_t;
}Required Methods§
Sourcefn is_valid(&self) -> c_int
fn is_valid(&self) -> c_int
See _cef_navigation_entry_t::is_valid for more documentation.
Sourcefn url(&self) -> CefStringUserfree
fn url(&self) -> CefStringUserfree
See _cef_navigation_entry_t::get_url for more documentation.
Sourcefn display_url(&self) -> CefStringUserfree
fn display_url(&self) -> CefStringUserfree
See _cef_navigation_entry_t::get_display_url for more documentation.
Sourcefn original_url(&self) -> CefStringUserfree
fn original_url(&self) -> CefStringUserfree
See _cef_navigation_entry_t::get_original_url for more documentation.
Sourcefn title(&self) -> CefStringUserfree
fn title(&self) -> CefStringUserfree
See _cef_navigation_entry_t::get_title for more documentation.
Sourcefn transition_type(&self) -> TransitionType
fn transition_type(&self) -> TransitionType
See _cef_navigation_entry_t::get_transition_type for more documentation.
Sourcefn has_post_data(&self) -> c_int
fn has_post_data(&self) -> c_int
See _cef_navigation_entry_t::has_post_data for more documentation.
Sourcefn completion_time(&self) -> Basetime
fn completion_time(&self) -> Basetime
See _cef_navigation_entry_t::get_completion_time for more documentation.
Sourcefn http_status_code(&self) -> c_int
fn http_status_code(&self) -> c_int
See _cef_navigation_entry_t::get_http_status_code for more documentation.
Sourcefn sslstatus(&self) -> Option<Sslstatus>
fn sslstatus(&self) -> Option<Sslstatus>
See _cef_navigation_entry_t::get_sslstatus for more documentation.
fn get_raw(&self) -> *mut _cef_navigation_entry_t
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.