pub struct LiveFrontierFailure<T> { /* private fields */ }Expand description
Failed live transition retaining the unchanged complete owner and operation.
Implementations§
Source§impl<T> LiveFrontierFailure<T>
impl<T> LiveFrontierFailure<T>
Sourcepub const fn error(&self) -> LiveFrontierError
pub const fn error(&self) -> LiveFrontierError
Returns the exact typed transition failure.
Sourcepub fn into_parts(self) -> (T, LiveFrontierOwner)
pub fn into_parts(self) -> (T, LiveFrontierOwner)
Recovers the unchanged owner and intact operation commit.
Trait Implementations§
Source§impl<T: Debug> Debug for LiveFrontierFailure<T>
impl<T: Debug> Debug for LiveFrontierFailure<T>
impl<T: Eq> Eq for LiveFrontierFailure<T>
Source§impl<T: PartialEq> PartialEq for LiveFrontierFailure<T>
impl<T: PartialEq> PartialEq for LiveFrontierFailure<T>
impl<T: PartialEq> StructuralPartialEq for LiveFrontierFailure<T>
Auto Trait Implementations§
impl<T> Freeze for LiveFrontierFailure<T>where
T: Freeze,
impl<T> RefUnwindSafe for LiveFrontierFailure<T>where
T: RefUnwindSafe,
impl<T> Send for LiveFrontierFailure<T>where
T: Send,
impl<T> Sync for LiveFrontierFailure<T>where
T: Sync,
impl<T> Unpin for LiveFrontierFailure<T>where
T: Unpin,
impl<T> UnsafeUnpin for LiveFrontierFailure<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for LiveFrontierFailure<T>where
T: 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