pub struct CatalogLocaleReview {
pub locale: String,
pub coverage: CatalogLocaleCoverage,
pub translations: CatalogTranslationChangeReport,
pub machine_translation: CatalogMachineTranslationReview,
}Expand description
Review details for one target locale.
Fields§
§locale: StringLocale represented by this review section.
coverage: CatalogLocaleCoverageCurrent coverage/status rollup for this locale.
translations: CatalogTranslationChangeReportTranslation changes against the previous state.
machine_translation: CatalogMachineTranslationReviewMachine-translation metadata state in the current target catalog.
Trait Implementations§
Source§impl Clone for CatalogLocaleReview
impl Clone for CatalogLocaleReview
Source§fn clone(&self) -> CatalogLocaleReview
fn clone(&self) -> CatalogLocaleReview
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 CatalogLocaleReview
impl Debug for CatalogLocaleReview
Source§impl Default for CatalogLocaleReview
impl Default for CatalogLocaleReview
Source§fn default() -> CatalogLocaleReview
fn default() -> CatalogLocaleReview
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CatalogLocaleReview
impl<'de> Deserialize<'de> for CatalogLocaleReview
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogLocaleReview, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogLocaleReview, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CatalogLocaleReview
Source§impl PartialEq for CatalogLocaleReview
impl PartialEq for CatalogLocaleReview
Source§fn eq(&self, other: &CatalogLocaleReview) -> bool
fn eq(&self, other: &CatalogLocaleReview) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CatalogLocaleReview
impl Serialize for CatalogLocaleReview
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for CatalogLocaleReview
Auto Trait Implementations§
impl Freeze for CatalogLocaleReview
impl RefUnwindSafe for CatalogLocaleReview
impl Send for CatalogLocaleReview
impl Sync for CatalogLocaleReview
impl Unpin for CatalogLocaleReview
impl UnsafeUnpin for CatalogLocaleReview
impl UnwindSafe for CatalogLocaleReview
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