pub struct FunctionDef {
pub return_type: Option<Vec<String>>,
pub name: String,
pub args: Vec<(Vec<String>, String)>,
pub statements: Vec<Statement>,
}Fields§
§return_type: Option<Vec<String>>§name: String§args: Vec<(Vec<String>, String)>§statements: Vec<Statement>Auto Trait Implementations§
impl Freeze for FunctionDef
impl RefUnwindSafe for FunctionDef
impl Send for FunctionDef
impl Sync for FunctionDef
impl Unpin for FunctionDef
impl UnsafeUnpin for FunctionDef
impl UnwindSafe for FunctionDef
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