pub struct AwaitExpr { /* private fields */ }Expand description
An await expression is used within an async function to pause execution and wait for a promise to resolve.
More information:
Trait Implementations§
Source§impl Executable for AwaitExpr
impl Executable for AwaitExpr
Source§impl Trace for AwaitExpr
impl Trace for AwaitExpr
Source§fn finalize_glue(&self)
fn finalize_glue(&self)
Runs Finalize::finalize() on this object and all
contained subobjects
impl StructuralPartialEq for AwaitExpr
Auto Trait Implementations§
impl Freeze for AwaitExpr
impl RefUnwindSafe for AwaitExpr
impl !Send for AwaitExpr
impl !Sync for AwaitExpr
impl Unpin for AwaitExpr
impl UnwindSafe for AwaitExpr
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