pub struct PendingCallbacks { /* private fields */ }Expand description
Shared state for pending command callbacks. Wrapped in Arc so both the HTTP server thread and Tauri command can share it.
Trait Implementations§
Source§impl Clone for PendingCallbacks
impl Clone for PendingCallbacks
Source§fn clone(&self) -> PendingCallbacks
fn clone(&self) -> PendingCallbacks
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 PendingCallbacks
impl RefUnwindSafe for PendingCallbacks
impl Send for PendingCallbacks
impl Sync for PendingCallbacks
impl Unpin for PendingCallbacks
impl UnsafeUnpin for PendingCallbacks
impl UnwindSafe for PendingCallbacks
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