Struct chrome_remote_interface_model::page::NavigateReturn[][src]

pub struct NavigateReturn { /* fields omitted */ }

Navigates current page to the given URL.

Implementations

impl NavigateReturn[src]

pub fn new(
    frame_id: FrameId,
    loader_id: Option<LoaderId>,
    error_text: Option<String>
) -> Self
[src]

pub fn frame_id(&self) -> &FrameId[src]

Frame id that has navigated (or failed to navigate)

pub fn loader_id(&self) -> Option<&LoaderId>[src]

Loader identifier.

pub fn error_text(&self) -> Option<&String>[src]

User friendly error message, present if and only if navigation has failed.

Trait Implementations

impl Clone for NavigateReturn[src]

impl Debug for NavigateReturn[src]

impl<'de> Deserialize<'de> for NavigateReturn[src]

impl Serialize for NavigateReturn[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.