pub struct TargetInfo {
pub target_id: TargetId,
pub type: String,
pub title: String,
pub url: String,
pub attached: bool,
pub opener_id: Option<TargetId>,
pub can_access_opener: bool,
pub opener_frame_id: Option<FrameId>,
pub parent_frame_id: Option<FrameId>,
pub browser_context_id: Option<BrowserContextId>,
pub subtype: Option<String>,
}Fields§
§target_id: TargetId§type: String§title: String§url: String§attached: boolWhether the target has an attached client.
opener_id: Option<TargetId>Opener target Id
can_access_opener: boolWhether the target has access to the originating window.
opener_frame_id: Option<FrameId>Frame id of originating window (is only set if target has an opener).
parent_frame_id: Option<FrameId>Id of the parent frame, only present for the “iframe” targets.
browser_context_id: Option<BrowserContextId>§subtype: Option<String>Provides additional details for specific target types. For example, for the type of “page”, this may be set to “prerender”.
Trait Implementations§
Source§impl Clone for TargetInfo
impl Clone for TargetInfo
Source§fn clone(&self) -> TargetInfo
fn clone(&self) -> TargetInfo
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 TargetInfo
impl Debug for TargetInfo
Source§impl<'de> Deserialize<'de> for TargetInfo
impl<'de> Deserialize<'de> for TargetInfo
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
Source§impl PartialEq for TargetInfo
impl PartialEq for TargetInfo
Source§impl Serialize for TargetInfo
impl Serialize for TargetInfo
impl StructuralPartialEq for TargetInfo
Auto Trait Implementations§
impl Freeze for TargetInfo
impl RefUnwindSafe for TargetInfo
impl Send for TargetInfo
impl Sync for TargetInfo
impl Unpin for TargetInfo
impl UnsafeUnpin for TargetInfo
impl UnwindSafe for TargetInfo
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