pub struct RemoveAttribute {
pub method: RemoveAttributeMethod,
pub params: RemoveAttributeParams,
}Expand description
Removes attribute with given name from an element with given id. removeAttribute
Fields§
§method: RemoveAttributeMethod§params: RemoveAttributeParamsImplementations§
Source§impl RemoveAttribute
impl RemoveAttribute
pub fn builder() -> RemoveAttributeBuilder
Source§impl RemoveAttribute
impl RemoveAttribute
pub const IDENTIFIER: &'static str = "DOM.removeAttribute"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RemoveAttribute
impl Clone for RemoveAttribute
Source§fn clone(&self) -> RemoveAttribute
fn clone(&self) -> RemoveAttribute
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 RemoveAttribute
impl CommandResult for RemoveAttribute
type Result = RemoveAttributeResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RemoveAttribute
impl Debug for RemoveAttribute
Source§impl<'de> Deserialize<'de> for RemoveAttribute
impl<'de> Deserialize<'de> for RemoveAttribute
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<RemoveAttribute> for BrowserProtocolCommands
impl From<RemoveAttribute> for BrowserProtocolCommands
Source§fn from(v: RemoveAttribute) -> Self
fn from(v: RemoveAttribute) -> Self
Converts to this type from the input type.
Source§impl From<RemoveAttribute> for Command
impl From<RemoveAttribute> for Command
Source§fn from(v: RemoveAttribute) -> Self
fn from(v: RemoveAttribute) -> Self
Converts to this type from the input type.
Source§impl From<RemoveAttribute> for DomCommands
impl From<RemoveAttribute> for DomCommands
Source§fn from(v: RemoveAttribute) -> Self
fn from(v: RemoveAttribute) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RemoveAttribute
impl PartialEq for RemoveAttribute
Source§impl Serialize for RemoveAttribute
impl Serialize for RemoveAttribute
Source§impl TryFrom<BrowserProtocolCommands> for RemoveAttribute
impl TryFrom<BrowserProtocolCommands> for RemoveAttribute
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, <RemoveAttribute as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RemoveAttribute as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RemoveAttribute
impl TryFrom<Command> for RemoveAttribute
Source§impl TryFrom<DomCommands> for RemoveAttribute
impl TryFrom<DomCommands> for RemoveAttribute
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, <RemoveAttribute as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <RemoveAttribute as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RemoveAttribute
Auto Trait Implementations§
impl Freeze for RemoveAttribute
impl RefUnwindSafe for RemoveAttribute
impl Send for RemoveAttribute
impl Sync for RemoveAttribute
impl Unpin for RemoveAttribute
impl UnsafeUnpin for RemoveAttribute
impl UnwindSafe for RemoveAttribute
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