pub struct FfiCancellationTokenView { /* private fields */ }Expand description
A non-owning view of a cancellation token.
This is used by Rust FFI functions that receive a token pointer. It does not own the token and does not affect reference counts.
Implementations§
Trait Implementations§
Source§impl Clone for FfiCancellationTokenView
impl Clone for FfiCancellationTokenView
Source§fn clone(&self) -> FfiCancellationTokenView
fn clone(&self) -> FfiCancellationTokenView
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for FfiCancellationTokenView
impl Debug for FfiCancellationTokenView
Source§impl Stop for FfiCancellationTokenView
impl Stop for FfiCancellationTokenView
impl Copy for FfiCancellationTokenView
impl Send for FfiCancellationTokenView
impl Sync for FfiCancellationTokenView
Auto Trait Implementations§
impl Freeze for FfiCancellationTokenView
impl RefUnwindSafe for FfiCancellationTokenView
impl Unpin for FfiCancellationTokenView
impl UnwindSafe for FfiCancellationTokenView
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