pub enum Command<C, V, Tm> {
Intro(C, Vec<(V, Tm)>, Intro<Tm>),
Rules(Vec<Rule<V, Tm>>),
}
Expand description
Command of a Dedukti theory.
Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl<C, V, Tm> Freeze for Command<C, V, Tm>
impl<C, V, Tm> RefUnwindSafe for Command<C, V, Tm>
impl<C, V, Tm> Send for Command<C, V, Tm>
impl<C, V, Tm> Sync for Command<C, V, Tm>
impl<C, V, Tm> Unpin for Command<C, V, Tm>
impl<C, V, Tm> UnwindSafe for Command<C, V, Tm>
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