pub struct SetNodeValue {
pub method: SetNodeValueMethod,
pub params: SetNodeValueParams,
}Expand description
Sets node value for a node with given id. setNodeValue
Fields§
§method: SetNodeValueMethod§params: SetNodeValueParamsImplementations§
Source§impl SetNodeValue
impl SetNodeValue
pub fn builder() -> SetNodeValueBuilder
Source§impl SetNodeValue
impl SetNodeValue
pub const IDENTIFIER: &'static str = "DOM.setNodeValue"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for SetNodeValue
impl Clone for SetNodeValue
Source§fn clone(&self) -> SetNodeValue
fn clone(&self) -> SetNodeValue
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 SetNodeValue
impl CommandResult for SetNodeValue
type Result = SetNodeValueResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for SetNodeValue
impl Debug for SetNodeValue
Source§impl<'de> Deserialize<'de> for SetNodeValue
impl<'de> Deserialize<'de> for SetNodeValue
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<SetNodeValue> for BrowserProtocolCommands
impl From<SetNodeValue> for BrowserProtocolCommands
Source§fn from(v: SetNodeValue) -> Self
fn from(v: SetNodeValue) -> Self
Converts to this type from the input type.
Source§impl From<SetNodeValue> for Command
impl From<SetNodeValue> for Command
Source§fn from(v: SetNodeValue) -> Self
fn from(v: SetNodeValue) -> Self
Converts to this type from the input type.
Source§impl From<SetNodeValue> for DomCommands
impl From<SetNodeValue> for DomCommands
Source§fn from(v: SetNodeValue) -> Self
fn from(v: SetNodeValue) -> Self
Converts to this type from the input type.
Source§impl PartialEq for SetNodeValue
impl PartialEq for SetNodeValue
Source§impl Serialize for SetNodeValue
impl Serialize for SetNodeValue
Source§impl TryFrom<BrowserProtocolCommands> for SetNodeValue
impl TryFrom<BrowserProtocolCommands> for SetNodeValue
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, <SetNodeValue as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <SetNodeValue as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for SetNodeValue
impl TryFrom<Command> for SetNodeValue
Source§impl TryFrom<DomCommands> for SetNodeValue
impl TryFrom<DomCommands> for SetNodeValue
Source§type Error = DomCommands
type Error = DomCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: DomCommands,
) -> Result<Self, <SetNodeValue as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <SetNodeValue as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for SetNodeValue
Auto Trait Implementations§
impl Freeze for SetNodeValue
impl RefUnwindSafe for SetNodeValue
impl Send for SetNodeValue
impl Sync for SetNodeValue
impl Unpin for SetNodeValue
impl UnsafeUnpin for SetNodeValue
impl UnwindSafe for SetNodeValue
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