pub struct TargetInfo {
pub targetId: TargetID,
pub type_: String,
pub title: String,
pub url: String,
pub attached: bool,
pub openerId: Option<TargetID>,
pub canAccessOpener: bool,
pub openerFrameId: Option<FrameId>,
pub parentFrameId: Option<FrameId>,
pub browserContextId: Option<BrowserContextID>,
pub subtype: Option<String>,
}Fields§
§targetId: TargetID§type_: String§title: String§url: String§attached: boolWhether the target has an attached client.
openerId: Option<TargetID>Opener target Id
canAccessOpener: boolWhether the target has access to the originating window.
openerFrameId: Option<FrameId>Frame id of originating window (is only set if target has an opener).
parentFrameId: Option<FrameId>Id of the parent frame, present for “iframe” and “worker” targets. For nested workers, this is the “ancestor” frame that created the first worker in the nested chain.
browserContextId: 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 Default for TargetInfo
impl Default for TargetInfo
Source§fn default() -> TargetInfo
fn default() -> TargetInfo
Returns the “default value” for a type. Read more
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
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