Trait veilid_tools::EventualCommon

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

Provided Methods§

Object Safety§

This trait is not object safe.

Implementors§

source§

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