1use crate::execution::error::EarlyExit; 2 3pub trait UpdateDerived<T, F> { 4 fn update(&mut self, deps: T) -> Result<(), EarlyExit>; 5}