pub struct GetBrowserContextsReturns {
pub browserContextIds: Vec<BrowserContextID>,
pub defaultBrowserContextId: Option<BrowserContextID>,
}Expand description
Returns all browser contexts created with ‘Target.createBrowserContext’ method.
Fields§
§browserContextIds: Vec<BrowserContextID>An array of browser context ids.
defaultBrowserContextId: Option<BrowserContextID>The id of the default browser context if available.
Trait Implementations§
Source§impl Clone for GetBrowserContextsReturns
impl Clone for GetBrowserContextsReturns
Source§fn clone(&self) -> GetBrowserContextsReturns
fn clone(&self) -> GetBrowserContextsReturns
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 Debug for GetBrowserContextsReturns
impl Debug for GetBrowserContextsReturns
Source§impl Default for GetBrowserContextsReturns
impl Default for GetBrowserContextsReturns
Source§fn default() -> GetBrowserContextsReturns
fn default() -> GetBrowserContextsReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetBrowserContextsReturns
impl<'de> Deserialize<'de> for GetBrowserContextsReturns
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for GetBrowserContextsReturns
impl RefUnwindSafe for GetBrowserContextsReturns
impl Send for GetBrowserContextsReturns
impl Sync for GetBrowserContextsReturns
impl Unpin for GetBrowserContextsReturns
impl UnsafeUnpin for GetBrowserContextsReturns
impl UnwindSafe for GetBrowserContextsReturns
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