Struct chromiumoxide::cdp::browser_protocol::dom::GetAttributesParams    
source · pub struct GetAttributesParams {
    pub node_id: NodeId,
}Expand description
Returns attributes for the specified node. getAttributes
Fields§
§node_id: NodeIdId of the node to retrieve attibutes for.
Implementations§
source§impl GetAttributesParams
 
impl GetAttributesParams
pub fn new(node_id: impl Into<NodeId>) -> GetAttributesParams
source§impl GetAttributesParams
 
impl GetAttributesParams
pub fn builder() -> GetAttributesParamsBuilder
source§impl GetAttributesParams
 
impl GetAttributesParams
pub const IDENTIFIER: &'static str = "DOM.getAttributes"
Trait Implementations§
source§impl Clone for GetAttributesParams
 
impl Clone for GetAttributesParams
source§fn clone(&self) -> GetAttributesParams
 
fn clone(&self) -> GetAttributesParams
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 GetAttributesParams
 
impl Command for GetAttributesParams
§type Response = GetAttributesReturns
 
type Response = GetAttributesReturns
The type of the response this request triggers on the chromium server
source§impl Debug for GetAttributesParams
 
impl Debug for GetAttributesParams
source§impl<'de> Deserialize<'de> for GetAttributesParams
 
impl<'de> Deserialize<'de> for GetAttributesParams
source§fn deserialize<__D>(
    __deserializer: __D
) -> Result<GetAttributesParams, <__D as Deserializer<'de>>::Error>where
    __D: Deserializer<'de>,
 
fn deserialize<__D>( __deserializer: __D ) -> Result<GetAttributesParams, <__D as Deserializer<'de>>::Error>where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for GetAttributesParams
 
impl Method for GetAttributesParams
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 GetAttributesParams
 
impl MethodType for GetAttributesParams
source§impl PartialEq<GetAttributesParams> for GetAttributesParams
 
impl PartialEq<GetAttributesParams> for GetAttributesParams
source§fn eq(&self, other: &GetAttributesParams) -> bool
 
fn eq(&self, other: &GetAttributesParams) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for GetAttributesParams
 
impl Serialize for GetAttributesParams
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
impl StructuralPartialEq for GetAttributesParams
Auto Trait Implementations§
impl RefUnwindSafe for GetAttributesParams
impl Send for GetAttributesParams
impl Sync for GetAttributesParams
impl Unpin for GetAttributesParams
impl UnwindSafe for GetAttributesParams
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