pub struct GetWindowBoundsParams {
    pub window_id: WindowId,
}Expand description
Get position and size of the browser window. getWindowBounds
Fields§
§window_id: WindowIdBrowser window id.
Implementations§
source§impl GetWindowBoundsParams
 
impl GetWindowBoundsParams
pub fn new(window_id: impl Into<WindowId>) -> GetWindowBoundsParams
source§impl GetWindowBoundsParams
 
impl GetWindowBoundsParams
pub fn builder() -> GetWindowBoundsParamsBuilder
source§impl GetWindowBoundsParams
 
impl GetWindowBoundsParams
pub const IDENTIFIER: &'static str = "Browser.getWindowBounds"
Trait Implementations§
source§impl Clone for GetWindowBoundsParams
 
impl Clone for GetWindowBoundsParams
source§fn clone(&self) -> GetWindowBoundsParams
 
fn clone(&self) -> GetWindowBoundsParams
Returns a copy 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 Command for GetWindowBoundsParams
 
impl Command for GetWindowBoundsParams
§type Response = GetWindowBoundsReturns
 
type Response = GetWindowBoundsReturns
The type of the response this request triggers on the chromium server
source§impl Debug for GetWindowBoundsParams
 
impl Debug for GetWindowBoundsParams
source§impl<'de> Deserialize<'de> for GetWindowBoundsParams
 
impl<'de> Deserialize<'de> for GetWindowBoundsParams
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<GetWindowBoundsParams, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<GetWindowBoundsParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for GetWindowBoundsParams
 
impl Method for GetWindowBoundsParams
source§fn identifier(&self) -> Cow<'static, str>
 
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like: 
DOM.removeNodesource§fn domain_name(&self) -> Cow<'static, str>
 
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to: 
DOMsource§fn method_name(&self) -> Cow<'static, str>
 
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain: 
removeNodesource§impl MethodType for GetWindowBoundsParams
 
impl MethodType for GetWindowBoundsParams
source§impl PartialEq<GetWindowBoundsParams> for GetWindowBoundsParams
 
impl PartialEq<GetWindowBoundsParams> for GetWindowBoundsParams
source§fn eq(&self, other: &GetWindowBoundsParams) -> bool
 
fn eq(&self, other: &GetWindowBoundsParams) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for GetWindowBoundsParams
 
impl Serialize for GetWindowBoundsParams
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 GetWindowBoundsParams
Auto Trait Implementations§
impl RefUnwindSafe for GetWindowBoundsParams
impl Send for GetWindowBoundsParams
impl Sync for GetWindowBoundsParams
impl Unpin for GetWindowBoundsParams
impl UnwindSafe for GetWindowBoundsParams
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