pub enum PageSessionHandle {
Chromium {
target_id: String,
browsing_context_id: Option<String>,
},
Firefox {
browsing_context_id: String,
},
}Variants§
Trait Implementations§
Source§impl Clone for PageSessionHandle
impl Clone for PageSessionHandle
Source§fn clone(&self) -> PageSessionHandle
fn clone(&self) -> PageSessionHandle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PageSessionHandle
impl Debug for PageSessionHandle
Source§impl<'de> Deserialize<'de> for PageSessionHandle
impl<'de> Deserialize<'de> for PageSessionHandle
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
impl Eq for PageSessionHandle
Source§impl PartialEq for PageSessionHandle
impl PartialEq for PageSessionHandle
Source§impl Serialize for PageSessionHandle
impl Serialize for PageSessionHandle
impl StructuralPartialEq for PageSessionHandle
Auto Trait Implementations§
impl Freeze for PageSessionHandle
impl RefUnwindSafe for PageSessionHandle
impl Send for PageSessionHandle
impl Sync for PageSessionHandle
impl Unpin for PageSessionHandle
impl UnsafeUnpin for PageSessionHandle
impl UnwindSafe for PageSessionHandle
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