1// SPDX-License-Identifier: Apache-2.0 2// Copyright (c) 2026 ReifyDB 3 4pub mod engine; 5 6use reifydb_core::interface::catalog::storage::StorageId; 7 8pub trait ObjectPersistence: Send + Sync + 'static { 9 fn is_persistent(&self, storage: StorageId) -> bool; 10}