pub enum ChromeBrowsingContextOpenResult {
OpenedNewContext {
tab_id: TabId,
},
OpenedExistingContext {
tab_id: TabId,
},
Denied,
Aborted,
}Variants§
Trait Implementations§
Source§impl Clone for ChromeBrowsingContextOpenResult
impl Clone for ChromeBrowsingContextOpenResult
Source§fn clone(&self) -> ChromeBrowsingContextOpenResult
fn clone(&self) -> ChromeBrowsingContextOpenResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<BrowsingContextOpenResult> for ChromeBrowsingContextOpenResult
impl From<BrowsingContextOpenResult> for ChromeBrowsingContextOpenResult
Source§fn from(value: BrowsingContextOpenResult) -> Self
fn from(value: BrowsingContextOpenResult) -> Self
Converts to this type from the input type.
Source§impl From<ChromeBrowsingContextOpenResult> for BrowsingContextOpenResult
impl From<ChromeBrowsingContextOpenResult> for BrowsingContextOpenResult
Source§fn from(value: ChromeBrowsingContextOpenResult) -> Self
fn from(value: ChromeBrowsingContextOpenResult) -> Self
Converts to this type from the input type.
Source§impl From<ChromeBrowsingContextOpenResult> for TabOpenResult
impl From<ChromeBrowsingContextOpenResult> for TabOpenResult
Source§fn from(value: ChromeBrowsingContextOpenResult) -> Self
fn from(value: ChromeBrowsingContextOpenResult) -> Self
Converts to this type from the input type.
Source§impl From<TabOpenResult> for ChromeBrowsingContextOpenResult
impl From<TabOpenResult> for ChromeBrowsingContextOpenResult
Source§fn from(value: TabOpenResult) -> Self
fn from(value: TabOpenResult) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChromeBrowsingContextOpenResult
impl PartialEq for ChromeBrowsingContextOpenResult
Source§fn eq(&self, other: &ChromeBrowsingContextOpenResult) -> bool
fn eq(&self, other: &ChromeBrowsingContextOpenResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ChromeBrowsingContextOpenResult
impl Eq for ChromeBrowsingContextOpenResult
impl StructuralPartialEq for ChromeBrowsingContextOpenResult
Auto Trait Implementations§
impl Freeze for ChromeBrowsingContextOpenResult
impl RefUnwindSafe for ChromeBrowsingContextOpenResult
impl Send for ChromeBrowsingContextOpenResult
impl Sync for ChromeBrowsingContextOpenResult
impl Unpin for ChromeBrowsingContextOpenResult
impl UnsafeUnpin for ChromeBrowsingContextOpenResult
impl UnwindSafe for ChromeBrowsingContextOpenResult
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