Struct chromiumoxide::cdp::browser_protocol::dom::RemoveAttributeParams
source · pub struct RemoveAttributeParams {
pub node_id: NodeId,
pub name: String,
}Expand description
Removes attribute with given name from an element with given id. removeAttribute
Fields§
§node_id: NodeIdId of the element to remove attribute from.
name: StringName of the attribute to remove.
Implementations§
source§impl RemoveAttributeParams
impl RemoveAttributeParams
pub fn builder() -> RemoveAttributeParamsBuilder
source§impl RemoveAttributeParams
impl RemoveAttributeParams
pub const IDENTIFIER: &'static str = "DOM.removeAttribute"
Trait Implementations§
source§impl Clone for RemoveAttributeParams
impl Clone for RemoveAttributeParams
source§fn clone(&self) -> RemoveAttributeParams
fn clone(&self) -> RemoveAttributeParams
Returns a copy 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 RemoveAttributeParams
impl Command for RemoveAttributeParams
§type Response = RemoveAttributeReturns
type Response = RemoveAttributeReturns
The type of the response this request triggers on the chromium server
source§impl Debug for RemoveAttributeParams
impl Debug for RemoveAttributeParams
source§impl<'de> Deserialize<'de> for RemoveAttributeParams
impl<'de> Deserialize<'de> for RemoveAttributeParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<RemoveAttributeParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>( __deserializer: __D ) -> Result<RemoveAttributeParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for RemoveAttributeParams
impl Method for RemoveAttributeParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
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 RemoveAttributeParams
impl MethodType for RemoveAttributeParams
source§impl PartialEq<RemoveAttributeParams> for RemoveAttributeParams
impl PartialEq<RemoveAttributeParams> for RemoveAttributeParams
source§fn eq(&self, other: &RemoveAttributeParams) -> bool
fn eq(&self, other: &RemoveAttributeParams) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for RemoveAttributeParams
impl Serialize for RemoveAttributeParams
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>( &self, __serializer: __S ) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where __S: Serializer,
Serialize this value into the given Serde serializer. Read more