pub struct GetMetadataCommand { /* private fields */ }Available on crate features
experimental and IndexedDB and Runtime only.Expand description
Gets metadata of an object store
Implementations§
Source§impl GetMetadataCommand
impl GetMetadataCommand
pub fn new( security_origin: String, database_name: String, object_store_name: String, ) -> Self
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.
Trait Implementations§
Source§impl Clone for GetMetadataCommand
impl Clone for GetMetadataCommand
Source§fn clone(&self) -> GetMetadataCommand
fn clone(&self) -> GetMetadataCommand
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 GetMetadataCommand
impl Command for GetMetadataCommand
Source§impl Debug for GetMetadataCommand
impl Debug for GetMetadataCommand
Source§impl<'de> Deserialize<'de> for GetMetadataCommand
impl<'de> Deserialize<'de> for GetMetadataCommand
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 GetMetadataCommand
impl RefUnwindSafe for GetMetadataCommand
impl Send for GetMetadataCommand
impl Sync for GetMetadataCommand
impl Unpin for GetMetadataCommand
impl UnwindSafe for GetMetadataCommand
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