pub struct GenuineProjectionResult {
pub source: String,
pub block_entry: String,
pub expr_entry: Option<String>,
}Expand description
Result of a genuine Futamura projection via self-application. Contains the LOGOS source of the residual and the discovered entry points.
Fields§
§source: StringThe LOGOS source of the genuine residual — exactly as the PE produced it, including specialized function definitions and a ## Main block.
block_entry: StringThe name of the block-level entry point (e.g., “peBlockM_d_vPEMiniR_…”). This is the specialized function that takes a Seq of CStmt and returns Seq of CStmt.
expr_entry: Option<String>The name of the expression-level entry point, if discovered.
Auto Trait Implementations§
impl Freeze for GenuineProjectionResult
impl RefUnwindSafe for GenuineProjectionResult
impl Send for GenuineProjectionResult
impl Sync for GenuineProjectionResult
impl Unpin for GenuineProjectionResult
impl UnsafeUnpin for GenuineProjectionResult
impl UnwindSafe for GenuineProjectionResult
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