pub trait CancellableExt:
IsA<Cancellable>
+ Sealed
+ 'static {
// Provided methods
fn cancel(&self) { ... }
fn fd(&self) -> i32 { ... }
fn is_cancelled(&self) -> bool { ... }
fn pop_current(&self) { ... }
fn push_current(&self) { ... }
fn release_fd(&self) { ... }
}
Provided Methods§
fn cancel(&self)
fn fd(&self) -> i32
fn is_cancelled(&self) -> bool
fn pop_current(&self)
fn push_current(&self)
fn release_fd(&self)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.