Enum idb_sys::RequestReadyState
source · [−]pub enum RequestReadyState {
Pending,
Done,
}Expand description
State of a request.
Variants
Pending
Request is still ongoing.
Done
Request has already completed.
Trait Implementations
sourceimpl Clone for RequestReadyState
impl Clone for RequestReadyState
sourcefn clone(&self) -> RequestReadyState
fn clone(&self) -> RequestReadyState
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for RequestReadyState
impl Debug for RequestReadyState
sourceimpl From<RequestReadyState> for IdbRequestReadyState
impl From<RequestReadyState> for IdbRequestReadyState
sourcefn from(state: RequestReadyState) -> Self
fn from(state: RequestReadyState) -> Self
Converts to this type from the input type.
sourceimpl From<RequestReadyState> for JsValue
impl From<RequestReadyState> for JsValue
sourcefn from(direction: RequestReadyState) -> Self
fn from(direction: RequestReadyState) -> Self
Converts to this type from the input type.
sourceimpl PartialEq<RequestReadyState> for RequestReadyState
impl PartialEq<RequestReadyState> for RequestReadyState
sourcefn eq(&self, other: &RequestReadyState) -> bool
fn eq(&self, other: &RequestReadyState) -> bool
sourceimpl TryFrom<JsValue> for RequestReadyState
impl TryFrom<JsValue> for RequestReadyState
impl Copy for RequestReadyState
impl Eq for RequestReadyState
impl StructuralEq for RequestReadyState
impl StructuralPartialEq for RequestReadyState
Auto Trait Implementations
impl RefUnwindSafe for RequestReadyState
impl Send for RequestReadyState
impl Sync for RequestReadyState
impl Unpin for RequestReadyState
impl UnwindSafe for RequestReadyState
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more