pub struct WindowHandle(/* private fields */);
Expand description
A handle to a browser window.
Should be obtained it via Client::window()
method (or similar).
Trait Implementations§
Source§impl Clone for WindowHandle
impl Clone for WindowHandle
Source§fn clone(&self) -> WindowHandle
fn clone(&self) -> WindowHandle
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 Debug for WindowHandle
impl Debug for WindowHandle
Source§impl From<WindowHandle> for String
impl From<WindowHandle> for String
Source§fn from(w: WindowHandle) -> Self
fn from(w: WindowHandle) -> Self
Converts to this type from the input type.
Source§impl PartialEq for WindowHandle
impl PartialEq for WindowHandle
Source§impl TryFrom<&str> for WindowHandle
impl TryFrom<&str> for WindowHandle
Source§impl TryFrom<String> for WindowHandle
impl TryFrom<String> for WindowHandle
impl Eq for WindowHandle
impl StructuralPartialEq for WindowHandle
Auto Trait Implementations§
impl Freeze for WindowHandle
impl RefUnwindSafe for WindowHandle
impl Send for WindowHandle
impl Sync for WindowHandle
impl Unpin for WindowHandle
impl UnwindSafe for WindowHandle
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.