pub struct RequestDatabaseCommand { /* private fields */ }Available on crate features
experimental and IndexedDB and Runtime only.Expand description
Requests database with given name in given frame.
Implementations§
Source§impl RequestDatabaseCommand
impl RequestDatabaseCommand
pub fn new(security_origin: String, database_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.
Trait Implementations§
Source§impl Clone for RequestDatabaseCommand
impl Clone for RequestDatabaseCommand
Source§fn clone(&self) -> RequestDatabaseCommand
fn clone(&self) -> RequestDatabaseCommand
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 RequestDatabaseCommand
impl Command for RequestDatabaseCommand
Source§impl Debug for RequestDatabaseCommand
impl Debug for RequestDatabaseCommand
Source§impl<'de> Deserialize<'de> for RequestDatabaseCommand
impl<'de> Deserialize<'de> for RequestDatabaseCommand
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 RequestDatabaseCommand
impl RefUnwindSafe for RequestDatabaseCommand
impl Send for RequestDatabaseCommand
impl Sync for RequestDatabaseCommand
impl Unpin for RequestDatabaseCommand
impl UnwindSafe for RequestDatabaseCommand
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