pub struct GetWindowForTargetReturns {
pub window_id: WindowId,
pub bounds: Bounds,
}Expand description
Get the browser window that contains the devtools target. getWindowForTarget
Fields§
§window_id: WindowIdBrowser window id.
bounds: BoundsBounds information of the window. When window state is ‘minimized’, the restored window position and size are returned.
Implementations§
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<'de> Deserialize<'de> for GetWindowForTargetReturns
impl<'de> Deserialize<'de> for GetWindowForTargetReturns
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetWindowForTargetReturns, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GetWindowForTargetReturns, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for GetWindowForTargetReturns
impl Serialize for GetWindowForTargetReturns
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for GetWindowForTargetReturns
Auto Trait Implementations§
impl Freeze for GetWindowForTargetReturns
impl RefUnwindSafe for GetWindowForTargetReturns
impl Send for GetWindowForTargetReturns
impl Sync for GetWindowForTargetReturns
impl Unpin 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