pub struct CatalogTranslationChange {
pub locale: String,
pub source_key: CatalogMessageKey,
pub previous: CatalogReviewTranslation,
pub current: CatalogReviewTranslation,
}Expand description
One target translation change.
Fields§
§locale: StringTarget locale whose translation changed.
source_key: CatalogMessageKeyCanonical gettext identity for the changed translation.
previous: CatalogReviewTranslationPrevious effective translation value.
current: CatalogReviewTranslationCurrent effective translation value.
Trait Implementations§
Source§impl Clone for CatalogTranslationChange
impl Clone for CatalogTranslationChange
Source§fn clone(&self) -> CatalogTranslationChange
fn clone(&self) -> CatalogTranslationChange
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 CatalogTranslationChange
impl Debug for CatalogTranslationChange
Source§impl<'de> Deserialize<'de> for CatalogTranslationChange
impl<'de> Deserialize<'de> for CatalogTranslationChange
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogTranslationChange, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CatalogTranslationChange, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for CatalogTranslationChange
Source§impl PartialEq for CatalogTranslationChange
impl PartialEq for CatalogTranslationChange
Source§fn eq(&self, other: &CatalogTranslationChange) -> bool
fn eq(&self, other: &CatalogTranslationChange) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CatalogTranslationChange
impl Serialize for CatalogTranslationChange
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 CatalogTranslationChange
Auto Trait Implementations§
impl Freeze for CatalogTranslationChange
impl RefUnwindSafe for CatalogTranslationChange
impl Send for CatalogTranslationChange
impl Sync for CatalogTranslationChange
impl Unpin for CatalogTranslationChange
impl UnsafeUnpin for CatalogTranslationChange
impl UnwindSafe for CatalogTranslationChange
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