pub struct ExportUpdates {
pub lid_updates: usize,
pub cb_id_updates: usize,
pub orphan_warnings: Vec<String>,
pub missing_entry_warnings: Vec<String>,
pub ambiguity_warnings: Vec<String>,
}Expand description
Per-resource summary of an export run.
Fields§
§lid_updates: usize§cb_id_updates: usize§orphan_warnings: Vec<String>values entries whose __BRAZESYNC.*__ placeholder is no longer
present in the local template (RFC §2.5 step 6).
missing_entry_warnings: Vec<String>Placeholders referenced in the local template that have no
matching entry in the values file. Symmetric to orphan_warnings
(which is the inverse direction). Kept separate so operators can
distinguish “add to values” from “remove from values”.
ambiguity_warnings: Vec<String>values entries whose URL anchor could not be matched in the remote body (URL deleted in dashboard, multiple matches, etc).
Implementations§
Source§impl ExportUpdates
impl ExportUpdates
pub fn merge(&mut self, other: ExportUpdates)
Trait Implementations§
Source§impl Clone for ExportUpdates
impl Clone for ExportUpdates
Source§fn clone(&self) -> ExportUpdates
fn clone(&self) -> ExportUpdates
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ExportUpdates
impl Debug for ExportUpdates
Source§impl Default for ExportUpdates
impl Default for ExportUpdates
Source§fn default() -> ExportUpdates
fn default() -> ExportUpdates
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ExportUpdates
impl RefUnwindSafe for ExportUpdates
impl Send for ExportUpdates
impl Sync for ExportUpdates
impl Unpin for ExportUpdates
impl UnsafeUnpin for ExportUpdates
impl UnwindSafe for ExportUpdates
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