pub enum FrameError {
NotStarted,
AlreadyStarted,
AlreadyComplete,
DepthExhausted,
WorkExhausted,
}Expand description
Failure enforced by the frame boundary rather than by its guest driver.
Variants§
NotStarted
A non-start packet was sent before the frame started.
AlreadyStarted
Start was sent more than once.
AlreadyComplete
A terminal frame was resumed again.
DepthExhausted
The driver exceeded its declared nesting depth.
WorkExhausted
The driver exhausted its declared work allowance.
Trait Implementations§
Source§impl Clone for FrameError
impl Clone for FrameError
Source§fn clone(&self) -> FrameError
fn clone(&self) -> FrameError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for FrameError
Source§impl Debug for FrameError
impl Debug for FrameError
impl Eq for FrameError
Source§impl PartialEq for FrameError
impl PartialEq for FrameError
impl StructuralPartialEq for FrameError
Auto Trait Implementations§
impl Freeze for FrameError
impl RefUnwindSafe for FrameError
impl Send for FrameError
impl Sync for FrameError
impl Unpin for FrameError
impl UnsafeUnpin for FrameError
impl UnwindSafe for FrameError
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