pub enum ExportStatus {
Draft,
InProgress,
Success,
Failed,
Stopped,
}Expand description
Export status enum
Variants§
Trait Implementations§
Source§impl Clone for ExportStatus
impl Clone for ExportStatus
Source§fn clone(&self) -> ExportStatus
fn clone(&self) -> ExportStatus
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 ExportStatus
impl Debug for ExportStatus
Source§impl<'de> Deserialize<'de> for ExportStatus
impl<'de> Deserialize<'de> for ExportStatus
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 Serialize for ExportStatus
impl Serialize for ExportStatus
impl Copy for ExportStatus
Auto Trait Implementations§
impl Freeze for ExportStatus
impl RefUnwindSafe for ExportStatus
impl Send for ExportStatus
impl Sync for ExportStatus
impl Unpin for ExportStatus
impl UnwindSafe for ExportStatus
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