pub struct CoqLtacDef {
pub name: String,
pub params: Vec<String>,
pub body: String,
pub is_recursive: bool,
}Expand description
Coq ltac definition
Fields§
§name: String§params: Vec<String>§body: String§is_recursive: boolTrait Implementations§
Source§impl Clone for CoqLtacDef
impl Clone for CoqLtacDef
Source§fn clone(&self) -> CoqLtacDef
fn clone(&self) -> CoqLtacDef
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CoqLtacDef
impl Debug for CoqLtacDef
Auto Trait Implementations§
impl Freeze for CoqLtacDef
impl RefUnwindSafe for CoqLtacDef
impl Send for CoqLtacDef
impl Sync for CoqLtacDef
impl Unpin for CoqLtacDef
impl UnsafeUnpin for CoqLtacDef
impl UnwindSafe for CoqLtacDef
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