pub trait Cancellable { // Required method fn cancel(&mut self); }
A trait for objects that can be cancelled.
Cancel the object.