pub struct GuardedFix<A> { /* private fields */ }Expand description
A guarded recursive definition builder.
Implements Löb’s principle: if we can build A assuming we already have
a ▶A (a “later” version), then we can produce A unconditionally.
Implementations§
Auto Trait Implementations§
impl<A> !Freeze for GuardedFix<A>
impl<A> !RefUnwindSafe for GuardedFix<A>
impl<A> Send for GuardedFix<A>where
A: Send,
impl<A> !Sync for GuardedFix<A>
impl<A> Unpin for GuardedFix<A>where
A: Unpin,
impl<A> UnsafeUnpin for GuardedFix<A>where
A: UnsafeUnpin,
impl<A> UnwindSafe for GuardedFix<A>where
A: 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