pub struct CatalogUpdateResult {
pub content: String,
pub created: bool,
pub updated: bool,
pub stats: CatalogStats,
pub diagnostics: Vec<Diagnostic>,
}Expand description
Result returned by catalog update operations.
Fields§
§content: StringFinal PO content after applying the update.
created: boolWhether the update created a new catalog from scratch.
updated: boolWhether the final content differs from the original input.
stats: CatalogStatsSummary counters for the operation.
diagnostics: Vec<Diagnostic>Non-fatal diagnostics collected during processing.
Trait Implementations§
Source§impl Clone for CatalogUpdateResult
impl Clone for CatalogUpdateResult
Source§fn clone(&self) -> CatalogUpdateResult
fn clone(&self) -> CatalogUpdateResult
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 CatalogUpdateResult
impl Debug for CatalogUpdateResult
Source§impl PartialEq for CatalogUpdateResult
impl PartialEq for CatalogUpdateResult
impl Eq for CatalogUpdateResult
impl StructuralPartialEq for CatalogUpdateResult
Auto Trait Implementations§
impl Freeze for CatalogUpdateResult
impl RefUnwindSafe for CatalogUpdateResult
impl Send for CatalogUpdateResult
impl Sync for CatalogUpdateResult
impl Unpin for CatalogUpdateResult
impl UnsafeUnpin for CatalogUpdateResult
impl UnwindSafe for CatalogUpdateResult
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