pub struct StorePullResult {
pub changesets_applied: u64,
pub held_positions: Vec<HeldStorePosition>,
pub visible_heads: Vec<VerifiedStoreDeviceHead>,
pub row_changes: Vec<RowChange>,
pub local_blob_cleanup_pending: bool,
pub frontier: BTreeMap<String, StoreBatchCommitRef>,
}Fields§
§changesets_applied: u64§held_positions: Vec<HeldStorePosition>§visible_heads: Vec<VerifiedStoreDeviceHead>§row_changes: Vec<RowChange>§local_blob_cleanup_pending: bool§frontier: BTreeMap<String, StoreBatchCommitRef>Trait Implementations§
Auto Trait Implementations§
impl Freeze for StorePullResult
impl !RefUnwindSafe for StorePullResult
impl Send for StorePullResult
impl Sync for StorePullResult
impl Unpin for StorePullResult
impl UnsafeUnpin for StorePullResult
impl !UnwindSafe for StorePullResult
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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>
Converts
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>
Converts
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 moreCreates a shared type from an unshared type.