#[non_exhaustive]pub enum Skip {
Unsupported,
Skipped,
}
Expand description
Indicates if skipping was performed.
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.
Unsupported
Indicates that skipping was not supported.
Skipped
Indicates that skipping was successfully performed.
Implementations§
Source§impl Skip
impl Skip
Sourcepub fn is_unsupported(self) -> bool
pub fn is_unsupported(self) -> bool
Indicates if a skip was not supported.
Sourcepub fn is_skipped(self) -> bool
pub fn is_skipped(self) -> bool
Indicates if a skip was performed.
Trait Implementations§
impl Copy for Skip
impl Eq for Skip
impl StructuralPartialEq for Skip
Auto Trait Implementations§
impl Freeze for Skip
impl RefUnwindSafe for Skip
impl Send for Skip
impl Sync for Skip
impl Unpin for Skip
impl UnwindSafe for Skip
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)