pub enum CaptureOutcome {
Success(CaptureSuccess),
Failure(CaptureFailure),
}Variants§
Success(CaptureSuccess)
Failure(CaptureFailure)
Trait Implementations§
Source§impl Clone for CaptureOutcome
impl Clone for CaptureOutcome
Source§fn clone(&self) -> CaptureOutcome
fn clone(&self) -> CaptureOutcome
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 CaptureOutcome
impl Debug for CaptureOutcome
Source§impl PartialEq for CaptureOutcome
impl PartialEq for CaptureOutcome
impl StructuralPartialEq for CaptureOutcome
Auto Trait Implementations§
impl Freeze for CaptureOutcome
impl RefUnwindSafe for CaptureOutcome
impl Send for CaptureOutcome
impl Sync for CaptureOutcome
impl Unpin for CaptureOutcome
impl UnsafeUnpin for CaptureOutcome
impl UnwindSafe for CaptureOutcome
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