pub trait ParentSync {
    // Required method
    fn get_latest_parent_entry_ref_deprecated(
        &self,
        object_id: ObjectID
    ) -> SuiResult<Option<ObjectRef>>;
}

Required Methods§

source

fn get_latest_parent_entry_ref_deprecated( &self, object_id: ObjectID ) -> SuiResult<Option<ObjectRef>>

This function is only called by older protocol versions. It creates an explicit dependency to tombstones, which is not desired.

Implementations on Foreign Types§

source§

impl<S: ParentSync> ParentSync for &S

source§

impl<S: ParentSync> ParentSync for &mut S

source§

impl<S: ParentSync> ParentSync for Arc<S>

Implementors§