pub struct CatalogCombineStats {
pub inputs: usize,
pub definitions: usize,
pub selected: usize,
pub skipped: usize,
pub conflicts_resolved: usize,
pub total: usize,
}Available on crate feature
catalog only.Expand description
Basic counters describing a catalog combine operation.
Fields§
§inputs: usizeNumber of input catalogs parsed.
definitions: usizeTotal message definitions considered after obsolete filtering.
selected: usizeMessage identities written to the final catalog.
skipped: usizeMessage identities removed by the selection rule.
conflicts_resolved: usizeTranslation conflicts resolved according to the selected strategy.
total: usizeTotal messages in the final catalog.
Trait Implementations§
Source§impl Clone for CatalogCombineStats
impl Clone for CatalogCombineStats
Source§fn clone(&self) -> CatalogCombineStats
fn clone(&self) -> CatalogCombineStats
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 CatalogCombineStats
impl Debug for CatalogCombineStats
Source§impl Default for CatalogCombineStats
impl Default for CatalogCombineStats
Source§fn default() -> CatalogCombineStats
fn default() -> CatalogCombineStats
Returns the “default value” for a type. Read more
impl Eq for CatalogCombineStats
Source§impl PartialEq for CatalogCombineStats
impl PartialEq for CatalogCombineStats
Source§fn eq(&self, other: &CatalogCombineStats) -> bool
fn eq(&self, other: &CatalogCombineStats) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogCombineStats
Auto Trait Implementations§
impl Freeze for CatalogCombineStats
impl RefUnwindSafe for CatalogCombineStats
impl Send for CatalogCombineStats
impl Sync for CatalogCombineStats
impl Unpin for CatalogCombineStats
impl UnsafeUnpin for CatalogCombineStats
impl UnwindSafe for CatalogCombineStats
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