pub enum PollEmptyResult {
InProgress,
Complete,
}
Available on crate features
sync_routes
and dbx_async
only.Expand description
Result returned by methods that poll for the status of an asynchronous job. Upon completion of the job, no additional information is returned.
Variants§
InProgress
The asynchronous job is still in progress.
Complete
The asynchronous job has completed successfully.
Trait Implementations§
Source§impl Clone for PollEmptyResult
impl Clone for PollEmptyResult
Source§fn clone(&self) -> PollEmptyResult
fn clone(&self) -> PollEmptyResult
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 PollEmptyResult
impl Debug for PollEmptyResult
Source§impl<'de> Deserialize<'de> for PollEmptyResult
impl<'de> Deserialize<'de> for PollEmptyResult
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 PollEmptyResult
impl From<PollResultBase> for PollEmptyResult
Source§fn from(parent: PollResultBase) -> Self
fn from(parent: PollResultBase) -> Self
Converts to this type from the input type.
Source§impl PartialEq for PollEmptyResult
impl PartialEq for PollEmptyResult
Source§impl Serialize for PollEmptyResult
impl Serialize for PollEmptyResult
impl Eq for PollEmptyResult
impl StructuralPartialEq for PollEmptyResult
Auto Trait Implementations§
impl Freeze for PollEmptyResult
impl RefUnwindSafe for PollEmptyResult
impl Send for PollEmptyResult
impl Sync for PollEmptyResult
impl Unpin for PollEmptyResult
impl UnwindSafe for PollEmptyResult
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.