pub struct GetAttributes {
pub method: GetAttributesMethod,
pub params: GetAttributesParams,
}Expand description
Returns attributes for the specified node. getAttributes
Fields§
§method: GetAttributesMethod§params: GetAttributesParamsImplementations§
Source§impl GetAttributes
impl GetAttributes
pub fn builder() -> GetAttributesBuilder
Source§impl GetAttributes
impl GetAttributes
pub const IDENTIFIER: &'static str = "DOM.getAttributes"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetAttributes
impl Clone for GetAttributes
Source§fn clone(&self) -> GetAttributes
fn clone(&self) -> GetAttributes
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 GetAttributes
impl CommandResult for GetAttributes
type Result = GetAttributesResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetAttributes
impl Debug for GetAttributes
Source§impl<'de> Deserialize<'de> for GetAttributes
impl<'de> Deserialize<'de> for GetAttributes
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<GetAttributes> for BrowserProtocolCommands
impl From<GetAttributes> for BrowserProtocolCommands
Source§fn from(v: GetAttributes) -> Self
fn from(v: GetAttributes) -> Self
Converts to this type from the input type.
Source§impl From<GetAttributes> for Command
impl From<GetAttributes> for Command
Source§fn from(v: GetAttributes) -> Self
fn from(v: GetAttributes) -> Self
Converts to this type from the input type.
Source§impl From<GetAttributes> for DomCommands
impl From<GetAttributes> for DomCommands
Source§fn from(v: GetAttributes) -> Self
fn from(v: GetAttributes) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetAttributes
impl PartialEq for GetAttributes
Source§impl Serialize for GetAttributes
impl Serialize for GetAttributes
Source§impl TryFrom<BrowserProtocolCommands> for GetAttributes
impl TryFrom<BrowserProtocolCommands> for GetAttributes
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, <GetAttributes as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetAttributes as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetAttributes
impl TryFrom<Command> for GetAttributes
Source§impl TryFrom<DomCommands> for GetAttributes
impl TryFrom<DomCommands> for GetAttributes
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, <GetAttributes as TryFrom<DomCommands>>::Error>
fn try_from( e: DomCommands, ) -> Result<Self, <GetAttributes as TryFrom<DomCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetAttributes
Auto Trait Implementations§
impl Freeze for GetAttributes
impl RefUnwindSafe for GetAttributes
impl Send for GetAttributes
impl Sync for GetAttributes
impl Unpin for GetAttributes
impl UnsafeUnpin for GetAttributes
impl UnwindSafe for GetAttributes
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