pub struct LogicalRestoreReport {
pub logical_id: String,
pub was_noop: bool,
pub restored_node_rows: usize,
pub restored_edge_rows: usize,
pub restored_chunk_rows: usize,
pub restored_fts_rows: usize,
pub restored_vec_rows: usize,
pub skipped_edges: Vec<SkippedEdge>,
pub notes: Vec<String>,
}Expand description
Report from restoring a retired logical ID back to active state.
Fields§
§logical_id: String§was_noop: bool§restored_node_rows: usize§restored_edge_rows: usize§restored_chunk_rows: usize§restored_fts_rows: usize§restored_vec_rows: usize§skipped_edges: Vec<SkippedEdge>§notes: Vec<String>Trait Implementations§
Source§impl Clone for LogicalRestoreReport
impl Clone for LogicalRestoreReport
Source§fn clone(&self) -> LogicalRestoreReport
fn clone(&self) -> LogicalRestoreReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LogicalRestoreReport
impl Debug for LogicalRestoreReport
Source§impl PartialEq for LogicalRestoreReport
impl PartialEq for LogicalRestoreReport
Source§impl Serialize for LogicalRestoreReport
impl Serialize for LogicalRestoreReport
impl Eq for LogicalRestoreReport
impl StructuralPartialEq for LogicalRestoreReport
Auto Trait Implementations§
impl Freeze for LogicalRestoreReport
impl RefUnwindSafe for LogicalRestoreReport
impl Send for LogicalRestoreReport
impl Sync for LogicalRestoreReport
impl Unpin for LogicalRestoreReport
impl UnsafeUnpin for LogicalRestoreReport
impl UnwindSafe for LogicalRestoreReport
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.