pub struct GetMetadata {
pub method: GetMetadataMethod,
pub params: GetMetadataParams,
}Expand description
Gets metadata of an object store. getMetadata
Fields§
§method: GetMetadataMethod§params: GetMetadataParamsImplementations§
Source§impl GetMetadata
impl GetMetadata
pub fn builder() -> GetMetadataBuilder
Source§impl GetMetadata
impl GetMetadata
pub const IDENTIFIER: &'static str = "IndexedDB.getMetadata"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for GetMetadata
impl Clone for GetMetadata
Source§fn clone(&self) -> GetMetadata
fn clone(&self) -> GetMetadata
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 CommandResult for GetMetadata
impl CommandResult for GetMetadata
type Result = GetMetadataResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for GetMetadata
impl Debug for GetMetadata
Source§impl<'de> Deserialize<'de> for GetMetadata
impl<'de> Deserialize<'de> for GetMetadata
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
Source§impl From<GetMetadata> for BrowserProtocolCommands
impl From<GetMetadata> for BrowserProtocolCommands
Source§fn from(v: GetMetadata) -> Self
fn from(v: GetMetadata) -> Self
Converts to this type from the input type.
Source§impl From<GetMetadata> for Command
impl From<GetMetadata> for Command
Source§fn from(v: GetMetadata) -> Self
fn from(v: GetMetadata) -> Self
Converts to this type from the input type.
Source§impl From<GetMetadata> for IndexedDbCommands
impl From<GetMetadata> for IndexedDbCommands
Source§fn from(v: GetMetadata) -> Self
fn from(v: GetMetadata) -> Self
Converts to this type from the input type.
Source§impl PartialEq for GetMetadata
impl PartialEq for GetMetadata
Source§impl Serialize for GetMetadata
impl Serialize for GetMetadata
Source§impl TryFrom<BrowserProtocolCommands> for GetMetadata
impl TryFrom<BrowserProtocolCommands> for GetMetadata
Source§type Error = BrowserProtocolCommands
type Error = BrowserProtocolCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: BrowserProtocolCommands,
) -> Result<Self, <GetMetadata as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <GetMetadata as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for GetMetadata
impl TryFrom<Command> for GetMetadata
Source§impl TryFrom<IndexedDbCommands> for GetMetadata
impl TryFrom<IndexedDbCommands> for GetMetadata
Source§type Error = IndexedDbCommands
type Error = IndexedDbCommands
The type returned in the event of a conversion error.
Source§fn try_from(
e: IndexedDbCommands,
) -> Result<Self, <GetMetadata as TryFrom<IndexedDbCommands>>::Error>
fn try_from( e: IndexedDbCommands, ) -> Result<Self, <GetMetadata as TryFrom<IndexedDbCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for GetMetadata
Auto Trait Implementations§
impl Freeze for GetMetadata
impl RefUnwindSafe for GetMetadata
impl Send for GetMetadata
impl Sync for GetMetadata
impl Unpin for GetMetadata
impl UnsafeUnpin for GetMetadata
impl UnwindSafe for GetMetadata
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