Struct dyon::ast::Function[][src]

pub struct Function {
    pub namespace: Arc<Vec<Arc<String>>>,
    pub name: Arc<String>,
    pub file: Arc<String>,
    pub source: Arc<String>,
    pub args: Vec<Arg>,
    pub currents: Vec<Current>,
    pub block: Block,
    pub ret: Type,
    pub resolved: Arc<AtomicBool>,
    pub source_range: Range,
    pub senders: Arc<(AtomicBool, Mutex<Vec<Sender<Variable>>>)>,
}

Fields

Methods

impl Function
[src]

Trait Implementations

impl Debug for Function
[src]

Formats the value using the given formatter. Read more

impl Clone for Function
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for Function

impl Sync for Function