pub struct GetWindowForTargetReturns {
pub windowId: WindowID,
pub bounds: Bounds,
}Expand description
Get the browser window that contains the devtools target.
Fields§
§windowId: WindowIDBrowser window id.
bounds: BoundsBounds information of the window. When window state is ‘minimized’, the restored window position and size are returned.
Trait Implementations§
Source§impl Clone for GetWindowForTargetReturns
impl Clone for GetWindowForTargetReturns
Source§fn clone(&self) -> GetWindowForTargetReturns
fn clone(&self) -> GetWindowForTargetReturns
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 GetWindowForTargetReturns
impl Debug for GetWindowForTargetReturns
Source§impl Default for GetWindowForTargetReturns
impl Default for GetWindowForTargetReturns
Source§fn default() -> GetWindowForTargetReturns
fn default() -> GetWindowForTargetReturns
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetWindowForTargetReturns
impl<'de> Deserialize<'de> for GetWindowForTargetReturns
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 GetWindowForTargetReturns
impl RefUnwindSafe for GetWindowForTargetReturns
impl Send for GetWindowForTargetReturns
impl Sync for GetWindowForTargetReturns
impl Unpin for GetWindowForTargetReturns
impl UnsafeUnpin for GetWindowForTargetReturns
impl UnwindSafe for GetWindowForTargetReturns
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