pub enum ChromeBrowsingContextOpenResponse {
AllowNewContext {
activate: bool,
},
AllowExistingContext {
tab_id: TabId,
activate: bool,
},
Deny,
}Variants§
Trait Implementations§
Source§impl Clone for ChromeBrowsingContextOpenResponse
impl Clone for ChromeBrowsingContextOpenResponse
Source§fn clone(&self) -> ChromeBrowsingContextOpenResponse
fn clone(&self) -> ChromeBrowsingContextOpenResponse
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<BrowsingContextOpenResponse> for ChromeBrowsingContextOpenResponse
impl From<BrowsingContextOpenResponse> for ChromeBrowsingContextOpenResponse
Source§fn from(value: BrowsingContextOpenResponse) -> Self
fn from(value: BrowsingContextOpenResponse) -> Self
Converts to this type from the input type.
Source§impl From<ChromeBrowsingContextOpenResponse> for BrowsingContextOpenResponse
impl From<ChromeBrowsingContextOpenResponse> for BrowsingContextOpenResponse
Source§fn from(value: ChromeBrowsingContextOpenResponse) -> Self
fn from(value: ChromeBrowsingContextOpenResponse) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ChromeBrowsingContextOpenResponse
impl PartialEq for ChromeBrowsingContextOpenResponse
Source§fn eq(&self, other: &ChromeBrowsingContextOpenResponse) -> bool
fn eq(&self, other: &ChromeBrowsingContextOpenResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for ChromeBrowsingContextOpenResponse
impl Eq for ChromeBrowsingContextOpenResponse
impl StructuralPartialEq for ChromeBrowsingContextOpenResponse
Auto Trait Implementations§
impl Freeze for ChromeBrowsingContextOpenResponse
impl RefUnwindSafe for ChromeBrowsingContextOpenResponse
impl Send for ChromeBrowsingContextOpenResponse
impl Sync for ChromeBrowsingContextOpenResponse
impl Unpin for ChromeBrowsingContextOpenResponse
impl UnsafeUnpin for ChromeBrowsingContextOpenResponse
impl UnwindSafe for ChromeBrowsingContextOpenResponse
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