pub struct OpenUrlRequest {
pub owner_appid: String,
pub owner_session_id: u64,
pub url: String,
pub target: OpenUrlTarget,
pub want_tab_id: bool,
}Fields§
§owner_appid: String§owner_session_id: u64§url: String§target: OpenUrlTarget§want_tab_id: boolWhen true, the host should create the in-app tab before returning and report its id. Fire-and-forget callers (new-window, navigation) leave this false so the work can hop off a WebView UI thread.
Trait Implementations§
Source§impl Clone for OpenUrlRequest
impl Clone for OpenUrlRequest
Source§fn clone(&self) -> OpenUrlRequest
fn clone(&self) -> OpenUrlRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for OpenUrlRequest
impl RefUnwindSafe for OpenUrlRequest
impl Send for OpenUrlRequest
impl Sync for OpenUrlRequest
impl Unpin for OpenUrlRequest
impl UnsafeUnpin for OpenUrlRequest
impl UnwindSafe for OpenUrlRequest
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more