#[non_exhaustive]pub enum BillsHistoryArchiveFileState {
Finished,
Ongoing,
Failed,
Unknown(String),
}Expand description
Download-link state for historical account-bills archive files.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Finished
The download link is ready.
Ongoing
The archive file is still being generated.
Failed
File generation failed; apply again.
Unknown(String)
A value not modeled by this crate version.
Implementations§
Trait Implementations§
Source§impl Clone for BillsHistoryArchiveFileState
impl Clone for BillsHistoryArchiveFileState
Source§fn clone(&self) -> BillsHistoryArchiveFileState
fn clone(&self) -> BillsHistoryArchiveFileState
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BillsHistoryArchiveFileState
impl Debug for BillsHistoryArchiveFileState
Source§impl<'de> Deserialize<'de> for BillsHistoryArchiveFileState
impl<'de> Deserialize<'de> for BillsHistoryArchiveFileState
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
impl Eq for BillsHistoryArchiveFileState
Source§impl From<&str> for BillsHistoryArchiveFileState
impl From<&str> for BillsHistoryArchiveFileState
Source§impl Hash for BillsHistoryArchiveFileState
impl Hash for BillsHistoryArchiveFileState
impl StructuralPartialEq for BillsHistoryArchiveFileState
Auto Trait Implementations§
impl Freeze for BillsHistoryArchiveFileState
impl RefUnwindSafe for BillsHistoryArchiveFileState
impl Send for BillsHistoryArchiveFileState
impl Sync for BillsHistoryArchiveFileState
impl Unpin for BillsHistoryArchiveFileState
impl UnsafeUnpin for BillsHistoryArchiveFileState
impl UnwindSafe for BillsHistoryArchiveFileState
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