#[non_exhaustive]pub enum DataCommandPoll {
Pending,
Complete(Response),
}Expand description
Result of advancing a generic data command without blocking.
Marked #[non_exhaustive] for forward compatibility.
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.
Trait Implementations§
Source§impl Clone for DataCommandPoll
impl Clone for DataCommandPoll
Source§fn clone(&self) -> DataCommandPoll
fn clone(&self) -> DataCommandPoll
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 DataCommandPoll
impl Debug for DataCommandPoll
Source§impl From<DataCommandPoll> for OperationPoll<Response>
impl From<DataCommandPoll> for OperationPoll<Response>
Source§fn from(value: DataCommandPoll) -> Self
fn from(value: DataCommandPoll) -> Self
Converts to this type from the input type.
impl Copy for DataCommandPoll
Auto Trait Implementations§
impl Freeze for DataCommandPoll
impl RefUnwindSafe for DataCommandPoll
impl Send for DataCommandPoll
impl Sync for DataCommandPoll
impl Unpin for DataCommandPoll
impl UnsafeUnpin for DataCommandPoll
impl UnwindSafe for DataCommandPoll
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