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§

source

type Error

Update translation error.

Required Methods§

source

fn translate_update(self) -> Result<ToUpdate, Self::Error>

Attempts to translate underlying update to the ToUpdate.

Implementations on Foreign Types§

source§

impl TranslateUpdate<()> for ()

Implementors§

source§

impl TranslateUpdate<IncOrDec> for AddOrRemoveOrModify<()>

source§

impl TranslateUpdate<IncOrDec> for IncOrDec

source§

impl<K, U, KK, UU> TranslateUpdate<MultiTargetUpdate<KK, UU>> for MultiTargetUpdate<K, U>where K: TryInto<KK> + Ord, U: TranslateUpdate<UU>, KK: Ord,

source§

impl<K, U, KK, UU> TranslateUpdate<SingleTargetUpdate<KK, UU>> for SingleTargetUpdate<K, U>where K: TryInto<KK> + Ord, U: TranslateUpdate<UU>, KK: Ord,

source§

impl<U, UU> TranslateUpdate<OnlyExistent<UU>> for OnlyExistent<U>where U: TranslateUpdate<UU>,

§

type Error = <U as TranslateUpdate<UU>>::Error

source§

impl<V, U, VV, UU> TranslateUpdate<AddOrRemoveOrModify<VV, UU>> for AddOrRemoveOrModify<V, U>where V: TryInto<VV>, U: TranslateUpdate<UU>,

source§

impl<V, U, VV, UU> TranslateUpdate<SetOrAddOrRemoveOrModify<VV, UU>> for SetOrAddOrRemoveOrModify<V, U>where V: TryInto<VV>, U: TranslateUpdate<UU>,

source§

impl<V, U, VV, UU> TranslateUpdate<SetOrModify<VV, UU>> for SetOrModify<V, U>where V: TryInto<VV>, U: TranslateUpdate<UU>,