pub enum ApplyOutcome<R> {
Applied(Vec<RowChange>),
Held(R),
}Variants§
Auto Trait Implementations§
impl<R> Freeze for ApplyOutcome<R>where
R: Freeze,
impl<R> RefUnwindSafe for ApplyOutcome<R>where
R: RefUnwindSafe,
impl<R> Send for ApplyOutcome<R>where
R: Send,
impl<R> Sync for ApplyOutcome<R>where
R: Sync,
impl<R> Unpin for ApplyOutcome<R>where
R: Unpin,
impl<R> UnsafeUnpin for ApplyOutcome<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for ApplyOutcome<R>where
R: UnwindSafe,
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