pub struct UpdateEntryRequest {
pub bundle_id: Option<Uuid>,
pub section: Option<Option<String>>,
pub item_kind_id: Option<Uuid>,
pub english: Option<String>,
pub hebrew: Option<String>,
pub status: Option<EntryStatus>,
pub zeplin_reference: Option<Option<String>>,
pub comments: Option<Option<String>>,
pub in_app: Option<bool>,
pub in_element: Option<bool>,
pub in_mock: Option<bool>,
}
Expand description
Request for updating an Entry
Fields§
§bundle_id: Option<Uuid>
This entry’s parent Bundle
’s id
section: Option<Option<String>>
The section this entry belongs in
item_kind_id: Option<Uuid>
This entry’s ItemKind
’s id.
english: Option<String>
The English version of this entry.
hebrew: Option<String>
The hebrew version of this entry.
status: Option<EntryStatus>
This entry’s current status.
zeplin_reference: Option<Option<String>>
A reference url in zeplin
comments: Option<Option<String>>
This entry’s comments
in_app: Option<bool>
If the entry is in the app.
in_element: Option<bool>
If the entry is in an element.
in_mock: Option<bool>
If the entry is in mock.
Trait Implementations§
Source§impl Clone for UpdateEntryRequest
impl Clone for UpdateEntryRequest
Source§fn clone(&self) -> UpdateEntryRequest
fn clone(&self) -> UpdateEntryRequest
Returns a copy of the value. Read more
1.0.0 · 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 UpdateEntryRequest
impl Debug for UpdateEntryRequest
Source§impl<'de> Deserialize<'de> for UpdateEntryRequest
impl<'de> Deserialize<'de> for UpdateEntryRequest
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 UpdateEntryRequest
impl RefUnwindSafe for UpdateEntryRequest
impl Send for UpdateEntryRequest
impl Sync for UpdateEntryRequest
impl Unpin for UpdateEntryRequest
impl UnwindSafe for UpdateEntryRequest
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