pub struct SetAttributeValueParams {
pub node_id: NodeId,
pub name: String,
pub value: String,
}Expand description
Sets attribute for an element with given id. setAttributeValue
Fields§
§node_id: NodeIdId of the element to set attribute for.
name: StringAttribute name.
value: StringAttribute value.
Implementations§
Source§impl SetAttributeValueParams
impl SetAttributeValueParams
pub const IDENTIFIER: &'static str = "DOM.setAttributeValue"
Trait Implementations§
Source§impl Clone for SetAttributeValueParams
impl Clone for SetAttributeValueParams
Source§fn clone(&self) -> SetAttributeValueParams
fn clone(&self) -> SetAttributeValueParams
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 Command for SetAttributeValueParams
impl Command for SetAttributeValueParams
Source§impl Debug for SetAttributeValueParams
impl Debug for SetAttributeValueParams
Source§impl<'de> Deserialize<'de> for SetAttributeValueParams
impl<'de> Deserialize<'de> for SetAttributeValueParams
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 Method for SetAttributeValueParams
impl Method for SetAttributeValueParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for SetAttributeValueParams
impl MethodType for SetAttributeValueParams
Source§impl PartialEq for SetAttributeValueParams
impl PartialEq for SetAttributeValueParams
Source§impl Serialize for SetAttributeValueParams
impl Serialize for SetAttributeValueParams
impl StructuralPartialEq for SetAttributeValueParams
Auto Trait Implementations§
impl Freeze for SetAttributeValueParams
impl RefUnwindSafe for SetAttributeValueParams
impl Send for SetAttributeValueParams
impl Sync for SetAttributeValueParams
impl Unpin for SetAttributeValueParams
impl UnwindSafe for SetAttributeValueParams
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