Skip to main content

EventualCommon

Trait EventualCommon 

Source
pub trait EventualCommon: EventualBase {
    // Provided methods
    fn is_resolved(&self) -> bool { ... }
    fn reset(&self) { ... }
    fn try_reset(&self) -> Result<(), EventualError> { ... }
}

Provided Methods§

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.

Implementors§

Source§

impl<T> EventualCommon for T
where T: EventualBase,