pub struct AttachToTargetParams {
pub target_id: TargetId,
pub flatten: Option<bool>,
}Expand description
Attaches to the target with given id. attachToTarget
Fields§
§target_id: TargetId§flatten: Option<bool>Enables “flat” access to the session via specifying sessionId attribute in the commands. We plan to make this the default, deprecate non-flattened mode, and eventually retire it. See crbug.com/991325.
Implementations§
Trait Implementations§
Source§impl Clone for AttachToTargetParams
impl Clone for AttachToTargetParams
Source§fn clone(&self) -> AttachToTargetParams
fn clone(&self) -> AttachToTargetParams
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 AttachToTargetParams
impl Debug for AttachToTargetParams
Source§impl<'de> Deserialize<'de> for AttachToTargetParams
impl<'de> Deserialize<'de> for AttachToTargetParams
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 AttachToTargetParams
impl PartialEq for AttachToTargetParams
Source§impl Serialize for AttachToTargetParams
impl Serialize for AttachToTargetParams
impl StructuralPartialEq for AttachToTargetParams
Auto Trait Implementations§
impl Freeze for AttachToTargetParams
impl RefUnwindSafe for AttachToTargetParams
impl Send for AttachToTargetParams
impl Sync for AttachToTargetParams
impl Unpin for AttachToTargetParams
impl UnsafeUnpin for AttachToTargetParams
impl UnwindSafe for AttachToTargetParams
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