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