pub struct OpenUrlResult {
pub tab_id: Option<String>,
}Expand description
Outcome of AppRuntime::open_url. tab_id is set when the host named
the tab it opened; None means the browser chrome owns the strip.
Fields§
§tab_id: Option<String>Trait Implementations§
Source§impl Clone for OpenUrlResult
impl Clone for OpenUrlResult
Source§fn clone(&self) -> OpenUrlResult
fn clone(&self) -> OpenUrlResult
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 moreSource§impl Debug for OpenUrlResult
impl Debug for OpenUrlResult
Source§impl Default for OpenUrlResult
impl Default for OpenUrlResult
Source§fn default() -> OpenUrlResult
fn default() -> OpenUrlResult
Returns the “default value” for a type. Read more
impl Eq for OpenUrlResult
Source§impl PartialEq for OpenUrlResult
impl PartialEq for OpenUrlResult
impl StructuralPartialEq for OpenUrlResult
Auto Trait Implementations§
impl Freeze for OpenUrlResult
impl RefUnwindSafe for OpenUrlResult
impl Send for OpenUrlResult
impl Sync for OpenUrlResult
impl Unpin for OpenUrlResult
impl UnsafeUnpin for OpenUrlResult
impl UnwindSafe for OpenUrlResult
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