pub struct RequestDataCommand { /* private fields */ }Available on crate features
experimental and IndexedDB and Runtime only.Expand description
Requests data from object store or index.
Implementations§
Source§impl RequestDataCommand
impl RequestDataCommand
pub fn builder() -> RequestDataCommandBuilder
Sourcepub fn security_origin(&self) -> &str
pub fn security_origin(&self) -> &str
Security origin.
Sourcepub fn database_name(&self) -> &str
pub fn database_name(&self) -> &str
Database name.
Sourcepub fn object_store_name(&self) -> &str
pub fn object_store_name(&self) -> &str
Object store name.
Sourcepub fn index_name(&self) -> &str
pub fn index_name(&self) -> &str
Index name, empty string for object store data requests.
Sourcepub fn skip_count(&self) -> u32
pub fn skip_count(&self) -> u32
Number of records to skip.
Trait Implementations§
Source§impl Clone for RequestDataCommand
impl Clone for RequestDataCommand
Source§fn clone(&self) -> RequestDataCommand
fn clone(&self) -> RequestDataCommand
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 RequestDataCommand
impl Command for RequestDataCommand
Source§impl Debug for RequestDataCommand
impl Debug for RequestDataCommand
Source§impl<'de> Deserialize<'de> for RequestDataCommand
impl<'de> Deserialize<'de> for RequestDataCommand
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
Auto Trait Implementations§
impl Freeze for RequestDataCommand
impl RefUnwindSafe for RequestDataCommand
impl Send for RequestDataCommand
impl Sync for RequestDataCommand
impl Unpin for RequestDataCommand
impl UnwindSafe for RequestDataCommand
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