[−][src]Struct rustpython_wasm::browser_module::PyPromise
Methods
impl PyPromise
[src]
pub fn new(value: Promise) -> PyPromise
[src]
pub fn from_future<F>(future: F) -> PyPromise where
F: Future<Item = JsValue, Error = JsValue> + 'static,
[src]
F: Future<Item = JsValue, Error = JsValue> + 'static,
pub fn value(&self) -> Promise
[src]
Trait Implementations
impl Debug for PyPromise
[src]
impl PyClassDef for PyPromise
[src]
impl PyClassImpl for PyPromise
[src]
const TP_FLAGS: PyTpFlags
[src]
fn impl_extend_class(ctx: &PyContext, class: &PyClassRef)
[src]
fn extend_class(ctx: &PyContext, class: &PyRef<PyClass>)
[src]
fn make_class(ctx: &PyContext) -> PyRef<PyClass>
[src]
fn make_class_with_base(ctx: &PyContext, base: PyRef<PyClass>) -> PyRef<PyClass>
[src]
impl PyValue for PyPromise
[src]
fn class(vm: &VirtualMachine) -> PyClassRef
[src]
const HAVE_DICT: bool
[src]
fn into_ref(self, vm: &VirtualMachine) -> PyRef<Self>
[src]
fn into_ref_with_type(
self,
vm: &VirtualMachine,
cls: PyRef<PyClass>
) -> Result<PyRef<Self>, PyRef<PyBaseException>>
[src]
self,
vm: &VirtualMachine,
cls: PyRef<PyClass>
) -> Result<PyRef<Self>, PyRef<PyBaseException>>
fn into_ref_with_type_unchecked(
self,
cls: PyRef<PyClass>,
dict: Option<PyRef<PyDict>>
) -> PyRef<Self>
[src]
self,
cls: PyRef<PyClass>,
dict: Option<PyRef<PyDict>>
) -> PyRef<Self>
Auto Trait Implementations
impl RefUnwindSafe for PyPromise
impl !Send for PyPromise
impl !Sync for PyPromise
impl Unpin for PyPromise
impl UnwindSafe for PyPromise
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> IntoPyObject for T where
T: PyValue,
[src]
T: PyValue,
fn into_pyobject(
self,
vm: &VirtualMachine
) -> Result<Rc<PyObject<dyn PyObjectPayload + 'static>>, PyRef<PyBaseException>>
[src]
self,
vm: &VirtualMachine
) -> Result<Rc<PyObject<dyn PyObjectPayload + 'static>>, PyRef<PyBaseException>>
impl<T> PyObjectPayload for T where
T: 'static + PyValue,
[src]
T: 'static + PyValue,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,