pub struct AppDeciders<P, A>{
pub should_prove: P,
pub should_accept_resource: A,
}Expand description
The app’s synchronous judgment seams, consulted inline on the manifold: RNS 1.4.2 PROVE_APP and ACCEPT_APP.
Fields§
§should_prove: P§should_accept_resource: AAuto Trait Implementations§
impl<P, A> Freeze for AppDeciders<P, A>
impl<P, A> RefUnwindSafe for AppDeciders<P, A>where
P: RefUnwindSafe,
A: RefUnwindSafe,
impl<P, A> Send for AppDeciders<P, A>
impl<P, A> Sync for AppDeciders<P, A>
impl<P, A> Unpin for AppDeciders<P, A>
impl<P, A> UnsafeUnpin for AppDeciders<P, A>where
P: UnsafeUnpin,
A: UnsafeUnpin,
impl<P, A> UnwindSafe for AppDeciders<P, A>where
P: UnwindSafe,
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