pub struct SetHardwareConcurrencyOverride {
pub method: SetHardwareConcurrencyOverrideMethod,
pub params: SetHardwareConcurrencyOverrideParams,
}Fields§
§method: SetHardwareConcurrencyOverrideMethod§params: SetHardwareConcurrencyOverrideParamsImplementations§
Source§impl SetHardwareConcurrencyOverride
impl SetHardwareConcurrencyOverride
pub fn builder() -> SetHardwareConcurrencyOverrideBuilder
Source§impl SetHardwareConcurrencyOverride
impl SetHardwareConcurrencyOverride
pub const IDENTIFIER: &'static str = "Emulation.setHardwareConcurrencyOverride"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetHardwareConcurrencyOverride
impl Clone for SetHardwareConcurrencyOverride
Source§fn clone(&self) -> SetHardwareConcurrencyOverride
fn clone(&self) -> SetHardwareConcurrencyOverride
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 SetHardwareConcurrencyOverride
impl CommandResult for SetHardwareConcurrencyOverride
type Result = SetHardwareConcurrencyOverrideResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl<'de> Deserialize<'de> for SetHardwareConcurrencyOverride
impl<'de> Deserialize<'de> for SetHardwareConcurrencyOverride
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<SetHardwareConcurrencyOverride> for BrowserProtocolCommands
impl From<SetHardwareConcurrencyOverride> for BrowserProtocolCommands
Source§fn from(v: SetHardwareConcurrencyOverride) -> Self
fn from(v: SetHardwareConcurrencyOverride) -> Self
Converts to this type from the input type.
Source§impl From<SetHardwareConcurrencyOverride> for Command
impl From<SetHardwareConcurrencyOverride> for Command
Source§fn from(v: SetHardwareConcurrencyOverride) -> Self
fn from(v: SetHardwareConcurrencyOverride) -> Self
Converts to this type from the input type.
Source§impl From<SetHardwareConcurrencyOverride> for EmulationCommands
impl From<SetHardwareConcurrencyOverride> for EmulationCommands
Source§fn from(v: SetHardwareConcurrencyOverride) -> Self
fn from(v: SetHardwareConcurrencyOverride) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetHardwareConcurrencyOverride
impl PartialEq for SetHardwareConcurrencyOverride
Source§fn eq(&self, other: &SetHardwareConcurrencyOverride) -> bool
fn eq(&self, other: &SetHardwareConcurrencyOverride) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<BrowserProtocolCommands> for SetHardwareConcurrencyOverride
impl TryFrom<BrowserProtocolCommands> for SetHardwareConcurrencyOverride
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, <SetHardwareConcurrencyOverride as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetHardwareConcurrencyOverride as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<EmulationCommands> for SetHardwareConcurrencyOverride
impl TryFrom<EmulationCommands> for SetHardwareConcurrencyOverride
Source§type Error = EmulationCommands
type Error = EmulationCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: EmulationCommands,
) -> Result<Self, <SetHardwareConcurrencyOverride as TryFrom<EmulationCommands>>::Error>
fn try_from( e: EmulationCommands, ) -> Result<Self, <SetHardwareConcurrencyOverride as TryFrom<EmulationCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetHardwareConcurrencyOverride
Auto Trait Implementations§
impl Freeze for SetHardwareConcurrencyOverride
impl RefUnwindSafe for SetHardwareConcurrencyOverride
impl Send for SetHardwareConcurrencyOverride
impl Sync for SetHardwareConcurrencyOverride
impl Unpin for SetHardwareConcurrencyOverride
impl UnsafeUnpin for SetHardwareConcurrencyOverride
impl UnwindSafe for SetHardwareConcurrencyOverride
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