pub struct FullRefreshReport {
pub schemas_added: Vec<String>,
pub schema_removals_skipped: Vec<String>,
pub mems_mounted: Vec<String>,
pub mem_removals_skipped: Vec<String>,
pub failures: Vec<RefreshFailure>,
pub elapsed_ms: u64,
}Expand description
What Engine::full_refresh changed — and, just as deliberately,
what it SKIPPED. The refresh is additive-only: removals never take
effect warm, and this report is how the caller learns whether its
next call will succeed instead of guessing.
Fields§
§schemas_added: Vec<String>Schema versions (name@version) newly resolvable.
schema_removals_skipped: Vec<String>In-memory schema versions absent from the re-scanned sources — the removal was skipped; they stay resolvable until restart.
mems_mounted: Vec<String>Mems newly mounted (cold-loaded like any boot-time mount).
mem_removals_skipped: Vec<String>Mounted writable mems absent from the re-scanned manifest — the removal was skipped; they stay live until restart.
failures: Vec<RefreshFailure>Per-item failures: a source or mount that failed to refresh. Failed items never surface as newly available; the others proceed.
elapsed_ms: u64Wall-clock cost of the refresh (the bounded-cost report).
Trait Implementations§
Source§impl Clone for FullRefreshReport
impl Clone for FullRefreshReport
Source§fn clone(&self) -> FullRefreshReport
fn clone(&self) -> FullRefreshReport
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for FullRefreshReport
impl Debug for FullRefreshReport
Source§impl Default for FullRefreshReport
impl Default for FullRefreshReport
Source§fn default() -> FullRefreshReport
fn default() -> FullRefreshReport
Source§impl Serialize for FullRefreshReport
impl Serialize for FullRefreshReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Auto Trait Implementations§
impl Freeze for FullRefreshReport
impl RefUnwindSafe for FullRefreshReport
impl Send for FullRefreshReport
impl Sync for FullRefreshReport
impl Unpin for FullRefreshReport
impl UnsafeUnpin for FullRefreshReport
impl UnwindSafe for FullRefreshReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>, which can then be
downcast into Box<dyn 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>
Rc<Trait> (where Trait: Downcast) to Rc<Any>, which 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)
&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)
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.Source§impl<T> DowncastSend for T
impl<T> DowncastSend for T
Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
impl<T> Fruit for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more