pub struct TranslationDetail {
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>,
pub extracted_comment: Option<String>,
pub translator_comment: Option<String>,
pub source_locations: 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>§extracted_comment: Option<String>§translator_comment: Option<String>§source_locations: Vec<String>Trait Implementations§
Source§impl Debug for TranslationDetail
impl Debug for TranslationDetail
Source§impl<'de> Deserialize<'de> for TranslationDetail
impl<'de> Deserialize<'de> for TranslationDetail
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 TranslationDetail
impl RefUnwindSafe for TranslationDetail
impl Send for TranslationDetail
impl Sync for TranslationDetail
impl Unpin for TranslationDetail
impl UnsafeUnpin for TranslationDetail
impl UnwindSafe for TranslationDetail
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