pub struct Declaration {
pub id: Located<Symbol>,
pub args: Vec<Located<SortedVar>>,
pub return_sort: Located<Sort>,
}
Expand description
Function declaration.
<function_dec> ::= (
Fields§
§id: Located<Symbol>
§args: Vec<Located<SortedVar>>
§return_sort: Located<Sort>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Declaration
impl RefUnwindSafe for Declaration
impl Send for Declaration
impl Sync for Declaration
impl Unpin for Declaration
impl UnwindSafe for Declaration
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