pub struct TermSignature {
pub args: Vec<BoundVar>,
pub ret: BoundVar,
}
Expand description
A function signature annotation, including the bound variable names for all arguments and the return value.
Fields§
§args: Vec<BoundVar>
§ret: BoundVar
Trait Implementations§
Source§impl Clone for TermSignature
impl Clone for TermSignature
Source§fn clone(&self) -> TermSignature
fn clone(&self) -> TermSignature
Returns a copy 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 TermSignature
impl Debug for TermSignature
Source§impl PartialEq for TermSignature
impl PartialEq for TermSignature
impl Eq for TermSignature
impl StructuralPartialEq for TermSignature
Auto Trait Implementations§
impl Freeze for TermSignature
impl RefUnwindSafe for TermSignature
impl Send for TermSignature
impl Sync for TermSignature
impl Unpin for TermSignature
impl UnwindSafe for TermSignature
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