pub trait IsCancel: IsCancelSeal {
    // Required method
    fn is_cancel(&self) -> bool;
}
Expand description

Returns true if the operation was cancelled

For use in impl for Result<T, ClackError>

Required Methods§

source

fn is_cancel(&self) -> bool

Returns true if the operation was cancelled

Implementations on Foreign Types§

source§

impl<T> IsCancel for Result<T, ClackError>

source§

fn is_cancel(&self) -> bool

Implementors§