pub struct CatalogAuditChecks {
pub completeness: bool,
pub extra_messages: bool,
pub icu_syntax: bool,
pub icu_compatibility: bool,
pub semantic_metadata: bool,
pub fuzzy_flags: bool,
pub obsolete_entries: bool,
}Expand description
Enables or disables individual catalog audit checks.
Fields§
§completeness: boolCheck that target locales cover active source messages.
extra_messages: boolCheck for active target messages that are not active in the source catalog.
icu_syntax: boolValidate active source and target message strings as ICU MessageFormat v1.
icu_compatibility: boolCompare target ICU structure against source ICU structure.
semantic_metadata: boolValidate source-side semantic message metadata.
fuzzy_flags: boolReport existing fuzzy flags.
obsolete_entries: boolReport obsolete entries.
Trait Implementations§
Source§impl Clone for CatalogAuditChecks
impl Clone for CatalogAuditChecks
Source§fn clone(&self) -> CatalogAuditChecks
fn clone(&self) -> CatalogAuditChecks
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 moreimpl Copy for CatalogAuditChecks
Source§impl Debug for CatalogAuditChecks
impl Debug for CatalogAuditChecks
Source§impl Default for CatalogAuditChecks
impl Default for CatalogAuditChecks
Source§fn default() -> CatalogAuditChecks
fn default() -> CatalogAuditChecks
Returns the “default value” for a type. Read more
impl Eq for CatalogAuditChecks
Source§impl PartialEq for CatalogAuditChecks
impl PartialEq for CatalogAuditChecks
Source§fn eq(&self, other: &CatalogAuditChecks) -> bool
fn eq(&self, other: &CatalogAuditChecks) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CatalogAuditChecks
Auto Trait Implementations§
impl Freeze for CatalogAuditChecks
impl RefUnwindSafe for CatalogAuditChecks
impl Send for CatalogAuditChecks
impl Sync for CatalogAuditChecks
impl Unpin for CatalogAuditChecks
impl UnsafeUnpin for CatalogAuditChecks
impl UnwindSafe for CatalogAuditChecks
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