pub struct DefinitelyNotSubmitted<E> { /* private fields */ }Expand description
A submit failure that guarantees no device-visible work was enqueued.
This wrapper is deliberately distinct from an arbitrary runtime error: only this outcome may release prepared resources or authorize an exact retry without first reaching a fence terminal state.
Implementations§
Source§impl<E> DefinitelyNotSubmitted<E>
impl<E> DefinitelyNotSubmitted<E>
Trait Implementations§
Source§impl<E: Debug> Debug for DefinitelyNotSubmitted<E>
impl<E: Debug> Debug for DefinitelyNotSubmitted<E>
Auto Trait Implementations§
impl<E> Freeze for DefinitelyNotSubmitted<E>where
E: Freeze,
impl<E> RefUnwindSafe for DefinitelyNotSubmitted<E>where
E: RefUnwindSafe,
impl<E> Send for DefinitelyNotSubmitted<E>where
E: Send,
impl<E> Sync for DefinitelyNotSubmitted<E>where
E: Sync,
impl<E> Unpin for DefinitelyNotSubmitted<E>where
E: Unpin,
impl<E> UnsafeUnpin for DefinitelyNotSubmitted<E>where
E: UnsafeUnpin,
impl<E> UnwindSafe for DefinitelyNotSubmitted<E>where
E: 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