pub enum FenceQuery<E> {
Pending,
Terminal(DeviceTerminalReceipt<E>),
Indeterminate(E),
}Expand description
Non-blocking fence observation. An indeterminate query retains the fence and routes ownership to blocking recovery; it is not a terminal failure.
Variants§
Implementations§
Source§impl<E> FenceQuery<E>
impl<E> FenceQuery<E>
pub const fn is_pending(&self) -> bool
Trait Implementations§
Source§impl<E: Debug> Debug for FenceQuery<E>
impl<E: Debug> Debug for FenceQuery<E>
Auto Trait Implementations§
impl<E> Freeze for FenceQuery<E>
impl<E> RefUnwindSafe for FenceQuery<E>
impl<E> Send for FenceQuery<E>
impl<E> Sync for FenceQuery<E>
impl<E> Unpin for FenceQuery<E>
impl<E> UnsafeUnpin for FenceQuery<E>
impl<E> UnwindSafe for FenceQuery<E>
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