pub enum EntryStatus {
DoNotTranslate,
New,
Stale,
NeedsReview,
Translated,
}Expand description
Status of a translation entry.
Variants§
DoNotTranslate
The entry is not translated and should not be.
New
The entry is new and has not been translated yet.
Stale
The entry is outdated.
NeedsReview
The entry has been modified and needs review.
Translated
The entry is translated and reviewed.
Trait Implementations§
Source§impl Clone for EntryStatus
impl Clone for EntryStatus
Source§fn clone(&self) -> EntryStatus
fn clone(&self) -> EntryStatus
Returns a duplicate 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 EntryStatus
impl Debug for EntryStatus
Source§impl<'de> Deserialize<'de> for EntryStatus
impl<'de> Deserialize<'de> for EntryStatus
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
Source§impl FromStr for EntryStatus
impl FromStr for EntryStatus
Source§impl PartialEq for EntryStatus
impl PartialEq for EntryStatus
Source§impl Serialize for EntryStatus
impl Serialize for EntryStatus
impl Eq for EntryStatus
impl StructuralPartialEq for EntryStatus
Auto Trait Implementations§
impl Freeze for EntryStatus
impl RefUnwindSafe for EntryStatus
impl Send for EntryStatus
impl Sync for EntryStatus
impl Unpin for EntryStatus
impl UnwindSafe for EntryStatus
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