pub struct CatalogTranslationChangeReport {
pub changed: usize,
pub details: Vec<CatalogTranslationChange>,
}Expand description
Translation change summary for one locale.
Fields§
§changed: usizeNumber of active translations whose effective value changed.
details: Vec<CatalogTranslationChange>Optional changed translation details.
Trait Implementations§
Source§impl Clone for CatalogTranslationChangeReport
impl Clone for CatalogTranslationChangeReport
Source§fn clone(&self) -> CatalogTranslationChangeReport
fn clone(&self) -> CatalogTranslationChangeReport
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 Default for CatalogTranslationChangeReport
impl Default for CatalogTranslationChangeReport
Source§fn default() -> CatalogTranslationChangeReport
fn default() -> CatalogTranslationChangeReport
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CatalogTranslationChangeReport
impl<'de> Deserialize<'de> for CatalogTranslationChangeReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogTranslationChangeReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogTranslationChangeReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CatalogTranslationChangeReport
Source§impl PartialEq for CatalogTranslationChangeReport
impl PartialEq for CatalogTranslationChangeReport
Source§fn eq(&self, other: &CatalogTranslationChangeReport) -> bool
fn eq(&self, other: &CatalogTranslationChangeReport) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CatalogTranslationChangeReport
impl Serialize for CatalogTranslationChangeReport
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 CatalogTranslationChangeReport
Auto Trait Implementations§
impl Freeze for CatalogTranslationChangeReport
impl RefUnwindSafe for CatalogTranslationChangeReport
impl Send for CatalogTranslationChangeReport
impl Sync for CatalogTranslationChangeReport
impl Unpin for CatalogTranslationChangeReport
impl UnsafeUnpin for CatalogTranslationChangeReport
impl UnwindSafe for CatalogTranslationChangeReport
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