Struct idb_sys::StoreRequest
source · pub struct StoreRequest { /* private fields */ }Expand description
Request returned when performing operations on an ObjectStore.
Trait Implementations§
source§impl Debug for StoreRequest
impl Debug for StoreRequest
source§impl From<IdbRequest> for StoreRequest
impl From<IdbRequest> for StoreRequest
source§fn from(inner: IdbRequest) -> Self
fn from(inner: IdbRequest) -> Self
Converts to this type from the input type.
source§impl From<StoreRequest> for IdbRequest
impl From<StoreRequest> for IdbRequest
source§fn from(request: StoreRequest) -> Self
fn from(request: StoreRequest) -> Self
Converts to this type from the input type.
source§impl From<StoreRequest> for JsValue
impl From<StoreRequest> for JsValue
source§fn from(value: StoreRequest) -> Self
fn from(value: StoreRequest) -> Self
Converts to this type from the input type.
source§impl Request for StoreRequest
impl Request for StoreRequest
source§fn source(&self) -> Result<Object, Error>
fn source(&self) -> Result<Object, Error>
Returns the
ObjectStore, Index, or Cursor the request was made against, or null if it was an open
request. Read moresource§fn transaction(&self) -> Option<Transaction>
fn transaction(&self) -> Option<Transaction>
Returns the
Transaction the request was made within. If this as an open request, then it returns an upgrade
transaction while it is running, or None otherwise. Read moresource§fn ready_state(&self) -> Result<RequestReadyState, Error>
fn ready_state(&self) -> Result<RequestReadyState, Error>
Returns
RequestReadyState::Pending until a request is complete, then returns RequestReadyState::Done.source§fn on_success<F>(&mut self, callback: F)where
F: FnOnce(Event) + 'static,
fn on_success<F>(&mut self, callback: F)where
F: FnOnce(Event) + 'static,
Adds an event handler for
success event.