pub struct MatchCase<E: Environment> {
pub pattern: Typed<Pattern<E>>,
pub term: Box<Typed<Term<E>>>,
}Fields§
§pattern: Typed<Pattern<E>>§term: Box<Typed<Term<E>>>Trait Implementations§
Source§impl<E: Environment> Display for MatchCase<E>
impl<E: Environment> Display for MatchCase<E>
Auto Trait Implementations§
impl<E> Freeze for MatchCase<E>where
<E as Environment>::Ident: Freeze,
<E as Environment>::Function: Freeze,
<E as Environment>::Sort: Freeze,
impl<E> RefUnwindSafe for MatchCase<E>where
<E as Environment>::Ident: RefUnwindSafe,
<E as Environment>::Function: RefUnwindSafe,
<E as Environment>::Sort: RefUnwindSafe,
<E as Environment>::Constant: RefUnwindSafe,
impl<E> Send for MatchCase<E>where
<E as Environment>::Ident: Send,
<E as Environment>::Function: Send,
<E as Environment>::Sort: Send,
<E as Environment>::Constant: Send,
impl<E> Sync for MatchCase<E>where
<E as Environment>::Ident: Sync,
<E as Environment>::Function: Sync,
<E as Environment>::Sort: Sync,
<E as Environment>::Constant: Sync,
impl<E> Unpin for MatchCase<E>where
<E as Environment>::Ident: Unpin,
<E as Environment>::Function: Unpin,
<E as Environment>::Sort: Unpin,
impl<E> UnsafeUnpin for MatchCase<E>where
<E as Environment>::Ident: UnsafeUnpin,
<E as Environment>::Function: UnsafeUnpin,
<E as Environment>::Sort: UnsafeUnpin,
impl<E> UnwindSafe for MatchCase<E>where
<E as Environment>::Ident: UnwindSafe,
<E as Environment>::Function: UnwindSafe,
<E as Environment>::Sort: UnwindSafe,
<E as Environment>::Constant: 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