Struct chromiumoxide::cdp::browser_protocol::indexed_db::RequestDataParams
source · pub struct RequestDataParams {
pub security_origin: Option<String>,
pub storage_key: Option<String>,
pub database_name: String,
pub object_store_name: String,
pub index_name: String,
pub skip_count: i64,
pub page_size: i64,
pub key_range: Option<KeyRange>,
}
Expand description
Requests data from object store or index. requestData
Fields§
§security_origin: Option<String>
At least and at most one of securityOrigin, storageKey must be specified. Security origin.
storage_key: Option<String>
Storage key.
database_name: String
Database name.
object_store_name: String
Object store name.
index_name: String
Index name, empty string for object store data requests.
skip_count: i64
Number of records to skip.
page_size: i64
Number of records to fetch.
key_range: Option<KeyRange>
Key range.
Implementations§
source§impl RequestDataParams
impl RequestDataParams
pub fn builder() -> RequestDataParamsBuilder
source§impl RequestDataParams
impl RequestDataParams
pub const IDENTIFIER: &'static str = "IndexedDB.requestData"
Trait Implementations§
source§impl Clone for RequestDataParams
impl Clone for RequestDataParams
source§fn clone(&self) -> RequestDataParams
fn clone(&self) -> RequestDataParams
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 RequestDataParams
impl Command for RequestDataParams
§type Response = RequestDataReturns
type Response = RequestDataReturns
The type of the response this request triggers on the chromium server
source§impl Debug for RequestDataParams
impl Debug for RequestDataParams
source§impl<'de> Deserialize<'de> for RequestDataParams
impl<'de> Deserialize<'de> for RequestDataParams
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<RequestDataParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<RequestDataParams, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl Method for RequestDataParams
impl Method for RequestDataParams
source§fn identifier(&self) -> Cow<'static, str>
fn identifier(&self) -> Cow<'static, str>
The whole string identifier for this method like:
DOM.removeNode
source§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOM
source§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNode
source§impl MethodType for RequestDataParams
impl MethodType for RequestDataParams
source§impl PartialEq for RequestDataParams
impl PartialEq for RequestDataParams
source§fn eq(&self, other: &RequestDataParams) -> bool
fn eq(&self, other: &RequestDataParams) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for RequestDataParams
impl Serialize for RequestDataParams
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 RequestDataParams
Auto Trait Implementations§
impl RefUnwindSafe for RequestDataParams
impl Send for RequestDataParams
impl Sync for RequestDataParams
impl Unpin for RequestDataParams
impl UnwindSafe for RequestDataParams
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