pub struct FunctionNode {
pub loc: Loc,
pub name: String,
pub children: Vec<Value>,
}
Fields§
§loc: Loc
Location information in the source file
name: String
The name of the FunctionNode
children: Vec<Value>
The children of the FunctionNode
Trait Implementations§
Source§impl Debug for FunctionNode
impl Debug for FunctionNode
Source§impl Default for FunctionNode
impl Default for FunctionNode
Source§fn default() -> FunctionNode
fn default() -> FunctionNode
Returns the “default value” for a type. Read more
Source§impl PartialEq for FunctionNode
impl PartialEq for FunctionNode
Source§impl Serialize for FunctionNode
impl Serialize for FunctionNode
impl StructuralPartialEq for FunctionNode
Auto Trait Implementations§
impl Freeze for FunctionNode
impl !RefUnwindSafe for FunctionNode
impl !Send for FunctionNode
impl !Sync for FunctionNode
impl Unpin for FunctionNode
impl !UnwindSafe for FunctionNode
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