pub struct GetRequestPostDataParams {
pub request_id: RequestId,
}Expand description
Returns post data sent with the request. Returns an error when no data was sent with the request. getRequestPostData
Fields§
§request_id: RequestIdIdentifier of the network request to get content for.
Implementations§
Source§impl GetRequestPostDataParams
impl GetRequestPostDataParams
pub const IDENTIFIER: &'static str = "Network.getRequestPostData"
Trait Implementations§
Source§impl Clone for GetRequestPostDataParams
impl Clone for GetRequestPostDataParams
Source§fn clone(&self) -> GetRequestPostDataParams
fn clone(&self) -> GetRequestPostDataParams
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 GetRequestPostDataParams
impl Command for GetRequestPostDataParams
Source§impl Debug for GetRequestPostDataParams
impl Debug for GetRequestPostDataParams
Source§impl<'de> Deserialize<'de> for GetRequestPostDataParams
impl<'de> Deserialize<'de> for GetRequestPostDataParams
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 GetRequestPostDataParams
impl Method for GetRequestPostDataParams
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 PartialEq for GetRequestPostDataParams
impl PartialEq for GetRequestPostDataParams
Source§impl Serialize for GetRequestPostDataParams
impl Serialize for GetRequestPostDataParams
impl StructuralPartialEq for GetRequestPostDataParams
Auto Trait Implementations§
impl Freeze for GetRequestPostDataParams
impl RefUnwindSafe for GetRequestPostDataParams
impl Send for GetRequestPostDataParams
impl Sync for GetRequestPostDataParams
impl Unpin for GetRequestPostDataParams
impl UnwindSafe for GetRequestPostDataParams
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