pub struct LiveFrontierCommit<T> { /* private fields */ }Expand description
A typed lifecycle commit paired with its complete post-transition owner.
Implementations§
Source§impl<T> LiveFrontierCommit<T>
impl<T> LiveFrontierCommit<T>
Sourcepub const fn owner(&self) -> &LiveFrontierOwner
pub const fn owner(&self) -> &LiveFrontierOwner
Borrows the complete post-transition owner.
Sourcepub fn into_parts(self) -> (T, LiveFrontierOwner)
pub fn into_parts(self) -> (T, LiveFrontierOwner)
Consumes the atomic transition for durability publication.
Trait Implementations§
Source§impl<T: Debug> Debug for LiveFrontierCommit<T>
impl<T: Debug> Debug for LiveFrontierCommit<T>
impl<T: Eq> Eq for LiveFrontierCommit<T>
Source§impl<T: PartialEq> PartialEq for LiveFrontierCommit<T>
impl<T: PartialEq> PartialEq for LiveFrontierCommit<T>
impl<T: PartialEq> StructuralPartialEq for LiveFrontierCommit<T>
Auto Trait Implementations§
impl<T> Freeze for LiveFrontierCommit<T>where
T: Freeze,
impl<T> RefUnwindSafe for LiveFrontierCommit<T>where
T: RefUnwindSafe,
impl<T> Send for LiveFrontierCommit<T>where
T: Send,
impl<T> Sync for LiveFrontierCommit<T>where
T: Sync,
impl<T> Unpin for LiveFrontierCommit<T>where
T: Unpin,
impl<T> UnsafeUnpin for LiveFrontierCommit<T>where
T: UnsafeUnpin,
impl<T> UnwindSafe for LiveFrontierCommit<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