pub struct TranslationRecord {
pub msgid: String,
pub msgctxt: Option<String>,
pub msgstr: String,
pub msgid_plural: Option<String>,
pub msgstr_plural: Vec<String>,
pub is_translated: bool,
pub is_fuzzy: bool,
pub flags: Vec<String>,
}Fields§
§msgid: String§msgctxt: Option<String>§msgstr: String§msgid_plural: Option<String>§msgstr_plural: Vec<String>§is_translated: bool§is_fuzzy: bool§flags: Vec<String>Trait Implementations§
Source§impl Debug for TranslationRecord
impl Debug for TranslationRecord
Source§impl<'de> Deserialize<'de> for TranslationRecord
impl<'de> Deserialize<'de> for TranslationRecord
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
Auto Trait Implementations§
impl Freeze for TranslationRecord
impl RefUnwindSafe for TranslationRecord
impl Send for TranslationRecord
impl Sync for TranslationRecord
impl Unpin for TranslationRecord
impl UnsafeUnpin for TranslationRecord
impl UnwindSafe for TranslationRecord
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