pub struct AutoRestoringSnapshotSource<T: SnapshotSourceWithArchive> { /* private fields */ }
Expand description
The SnapshotSource
implementation that automatically restores
the archived ledger entries accessed during get
calls.
This does not define a concrete implementation for ledger lookups
and just wraps a SnapshotSourceWithArchive
.
The restored entries will have the rent automatically bumped to
min_persistent_entry_ttl
, which is consistent with the behavior
of RestoreFootprintOp
if it was called in the same ledger.
Implementations§
source§impl<T: SnapshotSourceWithArchive> AutoRestoringSnapshotSource<T>
impl<T: SnapshotSourceWithArchive> AutoRestoringSnapshotSource<T>
pub fn new( snapshot_source: Rc<T>, ledger_info: &LedgerInfo, ) -> Result<Self, Error>
sourcepub fn reset_restored_keys(&self)
pub fn reset_restored_keys(&self)
Resets all the restored keys recorded so far.
sourcepub fn simulate_restore_keys_op(
&self,
network_config: &NetworkConfig,
adjustment_config: &SimulationAdjustmentConfig,
ledger_info: &LedgerInfo,
) -> Result<Option<RestoreOpSimulationResult>>
pub fn simulate_restore_keys_op( &self, network_config: &NetworkConfig, adjustment_config: &SimulationAdjustmentConfig, ledger_info: &LedgerInfo, ) -> Result<Option<RestoreOpSimulationResult>>
Simulates a RestoreFootprintOp
for all the keys that have been
restored so far.
Trait Implementations§
Auto Trait Implementations§
impl<T> !Freeze for AutoRestoringSnapshotSource<T>
impl<T> !RefUnwindSafe for AutoRestoringSnapshotSource<T>
impl<T> !Send for AutoRestoringSnapshotSource<T>
impl<T> !Sync for AutoRestoringSnapshotSource<T>
impl<T> Unpin for AutoRestoringSnapshotSource<T>
impl<T> UnwindSafe for AutoRestoringSnapshotSource<T>where
T: RefUnwindSafe,
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T, U, V, W, E, C> Compare<(T, U, V, W)> for C
impl<T, U, V, W, E, C> Compare<(T, U, V, W)> for C
type Error = E
fn compare( &self, a: &(T, U, V, W), b: &(T, U, V, W), ) -> Result<Ordering, <C as Compare<(T, U, V, W)>>::Error>
source§impl<T, U, V, W, X, E, C> Compare<(T, U, V, W, X)> for C
impl<T, U, V, W, X, E, C> Compare<(T, U, V, W, X)> for C
type Error = E
fn compare( &self, a: &(T, U, V, W, X), b: &(T, U, V, W, X), ) -> Result<Ordering, <C as Compare<(T, U, V, W, X)>>::Error>
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.