pub enum LayerwiseAcquireError<A, P> {
Architecture(A),
Policy(P),
}Expand description
Failure while a layerwise policy acquires or populates one architecture unit.
Variants§
Architecture(A)
The neutral architecture could not construct its unloaded unit.
Policy(P)
The execution policy could not acquire residency or populate the unit.
Trait Implementations§
Auto Trait Implementations§
impl<A, P> Freeze for LayerwiseAcquireError<A, P>
impl<A, P> RefUnwindSafe for LayerwiseAcquireError<A, P>where
A: RefUnwindSafe,
P: RefUnwindSafe,
impl<A, P> Send for LayerwiseAcquireError<A, P>
impl<A, P> Sync for LayerwiseAcquireError<A, P>
impl<A, P> Unpin for LayerwiseAcquireError<A, P>
impl<A, P> UnsafeUnpin for LayerwiseAcquireError<A, P>where
A: UnsafeUnpin,
P: UnsafeUnpin,
impl<A, P> UnwindSafe for LayerwiseAcquireError<A, P>where
A: UnwindSafe,
P: 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