pub struct AttachToTargetParams {
pub targetId: TargetID,
pub flatten: Option<bool>,
}Expand description
Attaches to the target with given id.
Fields§
§targetId: 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.
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 Default for AttachToTargetParams
impl Default for AttachToTargetParams
Source§fn default() -> AttachToTargetParams
fn default() -> AttachToTargetParams
Returns the “default value” for a type. Read more
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
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