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

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 lazy_inv: Vec<Vec<Lazy>>,
    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>>>)>,
}

Function.

Fields

namespace: Arc<Vec<Arc<String>>>

The namespace of the function.

name: Arc<String>

The name of the function.

file: Arc<String>

The file which the function was loaded from.

source: Arc<String>

The source code which the function is loaded from.

args: Vec<Arg>

Function arguments.

lazy_inv: Vec<Vec<Lazy>>

Lazy invariants.

currents: Vec<Current>

Current object references.

block: Block

Function block.

ret: Type

The return type of function.

resolved: Arc<AtomicBool>

Whether local variable references has been resolved.

source_range: Range

The range in source.

senders: Arc<(AtomicBool, Mutex<Vec<Sender<Variable>>>)>

List of senders that receive function input by creating an in-type.

Implementations

impl Function[src]

pub fn from_meta_data(
    namespace: &Arc<Vec<Arc<String>>>,
    file: &Arc<String>,
    source: &Arc<String>,
    node: &str,
    convert: Convert,
    ignored: &mut Vec<Range>
) -> Result<(Range, Function), ()>
[src]

Creates function from meta data.

pub fn returns(&self) -> bool[src]

Returns true if the function returns something.

Trait Implementations

impl Clone for Function[src]

impl Debug for Function[src]

Auto Trait Implementations

impl !RefUnwindSafe for Function

impl Send for Function

impl Sync for Function

impl Unpin for Function

impl !UnwindSafe for Function

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err