Trait dock_core::util::batch_update::TranslateUpdate
source · pub trait TranslateUpdate<ToUpdate>: Sized {
type Error;
// Required method
fn translate_update(self) -> Result<ToUpdate, Self::Error>;
}
Expand description
Attempts to translate underlying update to the ToUpdate
.
Required Associated Types§
Required Methods§
sourcefn translate_update(self) -> Result<ToUpdate, Self::Error>
fn translate_update(self) -> Result<ToUpdate, Self::Error>
Attempts to translate underlying update to the ToUpdate
.