pub struct SetRemoteLocations {
pub method: SetRemoteLocationsMethod,
pub params: SetRemoteLocationsParams,
}Expand description
Enables target discovery for the specified locations, when setDiscoverTargets was set to
true.
setRemoteLocations
Fields§
§method: SetRemoteLocationsMethod§params: SetRemoteLocationsParamsImplementations§
Source§impl SetRemoteLocations
impl SetRemoteLocations
pub fn builder() -> SetRemoteLocationsBuilder
Source§impl SetRemoteLocations
impl SetRemoteLocations
pub const IDENTIFIER: &'static str = "Target.setRemoteLocations"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetRemoteLocations
impl Clone for SetRemoteLocations
Source§fn clone(&self) -> SetRemoteLocations
fn clone(&self) -> SetRemoteLocations
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 CommandResult for SetRemoteLocations
impl CommandResult for SetRemoteLocations
type Result = SetRemoteLocationsResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetRemoteLocations
impl Debug for SetRemoteLocations
Source§impl<'de> Deserialize<'de> for SetRemoteLocations
impl<'de> Deserialize<'de> for SetRemoteLocations
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 From<SetRemoteLocations> for BrowserProtocolCommands
impl From<SetRemoteLocations> for BrowserProtocolCommands
Source§fn from(v: SetRemoteLocations) -> Self
fn from(v: SetRemoteLocations) -> Self
Converts to this type from the input type.
Source§impl From<SetRemoteLocations> for Command
impl From<SetRemoteLocations> for Command
Source§fn from(v: SetRemoteLocations) -> Self
fn from(v: SetRemoteLocations) -> Self
Converts to this type from the input type.
Source§impl From<SetRemoteLocations> for TargetCommands
impl From<SetRemoteLocations> for TargetCommands
Source§fn from(v: SetRemoteLocations) -> Self
fn from(v: SetRemoteLocations) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetRemoteLocations
impl PartialEq for SetRemoteLocations
Source§impl Serialize for SetRemoteLocations
impl Serialize for SetRemoteLocations
Source§impl TryFrom<BrowserProtocolCommands> for SetRemoteLocations
impl TryFrom<BrowserProtocolCommands> for SetRemoteLocations
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <SetRemoteLocations as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetRemoteLocations as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetRemoteLocations
impl TryFrom<Command> for SetRemoteLocations
Source§impl TryFrom<TargetCommands> for SetRemoteLocations
impl TryFrom<TargetCommands> for SetRemoteLocations
Source§type Error = TargetCommands
type Error = TargetCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: TargetCommands,
) -> Result<Self, <SetRemoteLocations as TryFrom<TargetCommands>>::Error>
fn try_from( e: TargetCommands, ) -> Result<Self, <SetRemoteLocations as TryFrom<TargetCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetRemoteLocations
Auto Trait Implementations§
impl Freeze for SetRemoteLocations
impl RefUnwindSafe for SetRemoteLocations
impl Send for SetRemoteLocations
impl Sync for SetRemoteLocations
impl Unpin for SetRemoteLocations
impl UnsafeUnpin for SetRemoteLocations
impl UnwindSafe for SetRemoteLocations
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