pub struct CatalogCoverageMessage {
pub locale: String,
pub source_key: CatalogMessageKey,
pub status: CatalogMessageStatus,
}Available on crate feature
catalog only.Expand description
One classified message row in a coverage report.
Fields§
§locale: StringLocale associated with this row.
source_key: CatalogMessageKeyCanonical gettext identity for the row.
status: CatalogMessageStatusCanonical status assigned by the shared message-status classifier.
Trait Implementations§
Source§impl Clone for CatalogCoverageMessage
impl Clone for CatalogCoverageMessage
Source§fn clone(&self) -> CatalogCoverageMessage
fn clone(&self) -> CatalogCoverageMessage
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 CatalogCoverageMessage
impl Debug for CatalogCoverageMessage
Source§impl<'de> Deserialize<'de> for CatalogCoverageMessage
impl<'de> Deserialize<'de> for CatalogCoverageMessage
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CatalogCoverageMessage
Source§impl PartialEq for CatalogCoverageMessage
impl PartialEq for CatalogCoverageMessage
Source§fn eq(&self, other: &CatalogCoverageMessage) -> bool
fn eq(&self, other: &CatalogCoverageMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CatalogCoverageMessage
impl Serialize for CatalogCoverageMessage
impl StructuralPartialEq for CatalogCoverageMessage
Auto Trait Implementations§
impl Freeze for CatalogCoverageMessage
impl RefUnwindSafe for CatalogCoverageMessage
impl Send for CatalogCoverageMessage
impl Sync for CatalogCoverageMessage
impl Unpin for CatalogCoverageMessage
impl UnsafeUnpin for CatalogCoverageMessage
impl UnwindSafe for CatalogCoverageMessage
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