pub enum TeamFolderArchiveJobStatus {
InProgress,
Complete(TeamFolderMetadata),
Failed(TeamFolderArchiveError),
}
Available on crate features
sync_routes
and dbx_team
only.Variants§
InProgress
The asynchronous job is still in progress.
Complete(TeamFolderMetadata)
The archive job has finished. The value is the metadata for the resulting team folder.
Failed(TeamFolderArchiveError)
Error occurred while performing an asynchronous job from
team_folder_archive()
.
Trait Implementations§
Source§impl Clone for TeamFolderArchiveJobStatus
impl Clone for TeamFolderArchiveJobStatus
Source§fn clone(&self) -> TeamFolderArchiveJobStatus
fn clone(&self) -> TeamFolderArchiveJobStatus
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 TeamFolderArchiveJobStatus
impl Debug for TeamFolderArchiveJobStatus
Source§impl<'de> Deserialize<'de> for TeamFolderArchiveJobStatus
impl<'de> Deserialize<'de> for TeamFolderArchiveJobStatus
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<PollResultBase> for TeamFolderArchiveJobStatus
impl From<PollResultBase> for TeamFolderArchiveJobStatus
Source§fn from(parent: PollResultBase) -> Self
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
impl Eq for TeamFolderArchiveJobStatus
impl StructuralPartialEq for TeamFolderArchiveJobStatus
Auto Trait Implementations§
impl Freeze for TeamFolderArchiveJobStatus
impl RefUnwindSafe for TeamFolderArchiveJobStatus
impl Send for TeamFolderArchiveJobStatus
impl Sync for TeamFolderArchiveJobStatus
impl Unpin for TeamFolderArchiveJobStatus
impl UnwindSafe for TeamFolderArchiveJobStatus
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.