pub trait ActionExt {
    fn rebase_on(
        &mut self,
        new_prev_action: HoloHash<Action>,
        new_prev_seq: u32,
        new_prev_timestamp: Timestamp
    ) -> Result<(), ActionError>; }

Required Methods

Implementors