pub struct Entry {
pub id: u32,
pub bundle_id: Uuid,
pub section: Option<String>,
pub item_kind_id: Option<Uuid>,
pub english: Option<String>,
pub hebrew: Option<String>,
pub status: EntryStatus,
pub zeplin_reference: Option<String>,
pub comments: Option<String>,
pub in_app: bool,
pub in_element: bool,
pub in_mock: bool,
}
Expand description
An entry into the ?
Fields§
§id: u32
This entry’s id
bundle_id: Uuid
This entry’s parent Bundle
’s id
section: 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: EntryStatus
This entry’s current status.
zeplin_reference: Option<String>
A reference url in zeplin
comments: Option<String>
This entry’s comments
in_app: bool
If the entry is in the app.
in_element: bool
If the entry is in an element.
in_mock: bool
If the entry is in mock.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Entry
impl<'de> Deserialize<'de> for Entry
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 Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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