pub struct RequestDatabase {
pub method: RequestDatabaseMethod,
pub params: RequestDatabaseParams,
}Expand description
Requests database with given name in given frame. requestDatabase
Fields§
§method: RequestDatabaseMethod§params: RequestDatabaseParamsImplementations§
Source§impl RequestDatabase
impl RequestDatabase
pub fn builder() -> RequestDatabaseBuilder
Source§impl RequestDatabase
impl RequestDatabase
pub const IDENTIFIER: &'static str = "IndexedDB.requestDatabase"
pub fn identifier(&self) -> &'static str
Trait Implementations§
Source§impl Clone for RequestDatabase
impl Clone for RequestDatabase
Source§fn clone(&self) -> RequestDatabase
fn clone(&self) -> RequestDatabase
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 RequestDatabase
impl CommandResult for RequestDatabase
type Result = RequestDatabaseResult
fn result_from_value(result: Value) -> Result<Self::Result>
Source§impl Debug for RequestDatabase
impl Debug for RequestDatabase
Source§impl<'de> Deserialize<'de> for RequestDatabase
impl<'de> Deserialize<'de> for RequestDatabase
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<RequestDatabase> for BrowserProtocolCommands
impl From<RequestDatabase> for BrowserProtocolCommands
Source§fn from(v: RequestDatabase) -> Self
fn from(v: RequestDatabase) -> Self
Converts to this type from the input type.
Source§impl From<RequestDatabase> for Command
impl From<RequestDatabase> for Command
Source§fn from(v: RequestDatabase) -> Self
fn from(v: RequestDatabase) -> Self
Converts to this type from the input type.
Source§impl From<RequestDatabase> for IndexedDbCommands
impl From<RequestDatabase> for IndexedDbCommands
Source§fn from(v: RequestDatabase) -> Self
fn from(v: RequestDatabase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for RequestDatabase
impl PartialEq for RequestDatabase
Source§impl Serialize for RequestDatabase
impl Serialize for RequestDatabase
Source§impl TryFrom<BrowserProtocolCommands> for RequestDatabase
impl TryFrom<BrowserProtocolCommands> for RequestDatabase
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, <RequestDatabase as TryFrom<BrowserProtocolCommands>>::Error>
fn try_from( e: BrowserProtocolCommands, ) -> Result<Self, <RequestDatabase as TryFrom<BrowserProtocolCommands>>::Error>
Performs the conversion.
Source§impl TryFrom<Command> for RequestDatabase
impl TryFrom<Command> for RequestDatabase
Source§impl TryFrom<IndexedDbCommands> for RequestDatabase
impl TryFrom<IndexedDbCommands> for RequestDatabase
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, <RequestDatabase as TryFrom<IndexedDbCommands>>::Error>
fn try_from( e: IndexedDbCommands, ) -> Result<Self, <RequestDatabase as TryFrom<IndexedDbCommands>>::Error>
Performs the conversion.
impl StructuralPartialEq for RequestDatabase
Auto Trait Implementations§
impl Freeze for RequestDatabase
impl RefUnwindSafe for RequestDatabase
impl Send for RequestDatabase
impl Sync for RequestDatabase
impl Unpin for RequestDatabase
impl UnsafeUnpin for RequestDatabase
impl UnwindSafe for RequestDatabase
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