Skip to main content

DeferredValue

Trait DeferredValue 

Source
pub trait DeferredValue: Send + Sync {
    // Required method
    fn resolve(&self) -> Result<LogValue, BoxError>;
}

Required Methods§

Implementors§

Source§

impl<F> DeferredValue for F
where F: Fn() -> Result<LogValue, BoxError> + Send + Sync,