pub struct PendingCallback {
pub func: JSValue,
pub args: Vec<JSValue>,
pub is_method_call: bool,
}Fields§
§func: JSValue§args: Vec<JSValue>§is_method_call: boolTrait Implementations§
Source§impl Clone for PendingCallback
impl Clone for PendingCallback
Source§fn clone(&self) -> PendingCallback
fn clone(&self) -> PendingCallback
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PendingCallback
impl RefUnwindSafe for PendingCallback
impl Send for PendingCallback
impl Sync for PendingCallback
impl Unpin for PendingCallback
impl UnsafeUnpin for PendingCallback
impl UnwindSafe for PendingCallback
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