pub struct DeleteObjectStoreEntriesBuilder { /* private fields */ }Expand description
Builder for DeleteObjectStoreEntries.
Implementations§
Source§impl DeleteObjectStoreEntriesBuilder
impl DeleteObjectStoreEntriesBuilder
Sourcepub fn security_origin<VALUE: Into<String>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn security_origin<VALUE: Into<String>>( &mut self, value: VALUE, ) -> &mut Self
At least and at most one of securityOrigin, storageKey, or storageBucket must be specified. Security origin.
Sourcepub fn storage_key<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn storage_key<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
Storage key.
Sourcepub fn storage_bucket<VALUE: Into<StorageBucket>>(
&mut self,
value: VALUE,
) -> &mut Self
pub fn storage_bucket<VALUE: Into<StorageBucket>>( &mut self, value: VALUE, ) -> &mut Self
Storage bucket. If not specified, it uses the default bucket.
pub fn database_name<VALUE: Into<String>>(&mut self, value: VALUE) -> &mut Self
pub fn object_store_name<VALUE: Into<String>>( &mut self, value: VALUE, ) -> &mut Self
Sourcepub fn key_range<VALUE: Into<KeyRange>>(&mut self, value: VALUE) -> &mut Self
pub fn key_range<VALUE: Into<KeyRange>>(&mut self, value: VALUE) -> &mut Self
Range of entry keys to delete
Sourcepub fn build(
&self,
) -> Result<DeleteObjectStoreEntries, DeleteObjectStoreEntriesBuilderError>
pub fn build( &self, ) -> Result<DeleteObjectStoreEntries, DeleteObjectStoreEntriesBuilderError>
Trait Implementations§
Source§impl Clone for DeleteObjectStoreEntriesBuilder
impl Clone for DeleteObjectStoreEntriesBuilder
Source§fn clone(&self) -> DeleteObjectStoreEntriesBuilder
fn clone(&self) -> DeleteObjectStoreEntriesBuilder
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 moreAuto Trait Implementations§
impl Freeze for DeleteObjectStoreEntriesBuilder
impl RefUnwindSafe for DeleteObjectStoreEntriesBuilder
impl Send for DeleteObjectStoreEntriesBuilder
impl Sync for DeleteObjectStoreEntriesBuilder
impl Unpin for DeleteObjectStoreEntriesBuilder
impl UnsafeUnpin for DeleteObjectStoreEntriesBuilder
impl UnwindSafe for DeleteObjectStoreEntriesBuilder
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