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