pub enum PcfType {
Nat,
Bool,
Fun(Box<PcfType>, Box<PcfType>),
}Expand description
A PCF (Programming Computable Functions) base type.
Variants§
Trait Implementations§
impl Eq for PcfType
impl StructuralPartialEq for PcfType
Auto Trait Implementations§
impl Freeze for PcfType
impl RefUnwindSafe for PcfType
impl Send for PcfType
impl Sync for PcfType
impl Unpin for PcfType
impl UnsafeUnpin for PcfType
impl UnwindSafe for PcfType
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