#[non_exhaustive]pub enum BlockPoll {
Pending,
Complete,
}Expand description
Result of advancing a submitted transfer without blocking.
Marked #[non_exhaustive]: intermediate states such as Aborted or
per-block progress may be added before 1.0.
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§
impl Copy for BlockPoll
impl Eq for BlockPoll
impl StructuralPartialEq for BlockPoll
Auto Trait Implementations§
impl Freeze for BlockPoll
impl RefUnwindSafe for BlockPoll
impl Send for BlockPoll
impl Sync for BlockPoll
impl Unpin for BlockPoll
impl UnsafeUnpin for BlockPoll
impl UnwindSafe for BlockPoll
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