pub struct CompiledCatalogArtifact {
pub messages: BTreeMap<String, String>,
pub missing: Vec<CompiledCatalogMissingMessage>,
pub diagnostics: Vec<CompiledCatalogDiagnostic>,
}Expand description
Host-neutral compiled runtime artifact for one requested locale.
Fields§
§messages: BTreeMap<String, String>Final runtime message map keyed by the derived lookup key.
missing: Vec<CompiledCatalogMissingMessage>Messages that were missing from the requested locale and had to fall back.
diagnostics: Vec<CompiledCatalogDiagnostic>Diagnostics collected while validating final runtime messages.
Trait Implementations§
Source§impl Clone for CompiledCatalogArtifact
impl Clone for CompiledCatalogArtifact
Source§fn clone(&self) -> CompiledCatalogArtifact
fn clone(&self) -> CompiledCatalogArtifact
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 CompiledCatalogArtifact
impl Debug for CompiledCatalogArtifact
Source§impl Default for CompiledCatalogArtifact
impl Default for CompiledCatalogArtifact
Source§fn default() -> CompiledCatalogArtifact
fn default() -> CompiledCatalogArtifact
Returns the “default value” for a type. Read more
Source§impl PartialEq for CompiledCatalogArtifact
impl PartialEq for CompiledCatalogArtifact
impl Eq for CompiledCatalogArtifact
impl StructuralPartialEq for CompiledCatalogArtifact
Auto Trait Implementations§
impl Freeze for CompiledCatalogArtifact
impl RefUnwindSafe for CompiledCatalogArtifact
impl Send for CompiledCatalogArtifact
impl Sync for CompiledCatalogArtifact
impl Unpin for CompiledCatalogArtifact
impl UnsafeUnpin for CompiledCatalogArtifact
impl UnwindSafe for CompiledCatalogArtifact
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