[][src]Struct dyon::Call

pub struct Call { /* fields omitted */ }

Used to call specific functions with arguments.

Methods

impl Call[src]

pub fn new(name: &str) -> Call[src]

Creates a new call.

pub fn arg<T: PushVariable>(self, val: T) -> Self[src]

Push value to argument list.

pub fn vec4<T: ConvertVec4>(self, val: T) -> Self[src]

Push Vec4 to argument list.

pub fn rust<T: 'static>(self, val: T) -> Self[src]

Push Rust object to argument list.

pub fn run(
    &self,
    runtime: &mut Runtime,
    module: &Arc<Module>
) -> Result<(), String>
[src]

Run call without any return value.

pub fn run_ret<T: PopVariable>(
    &self,
    runtime: &mut Runtime,
    module: &Arc<Module>
) -> Result<T, String>
[src]

Run call with return value.

pub fn run_vec4<T: ConvertVec4>(
    &self,
    runtime: &mut Runtime,
    module: &Arc<Module>
) -> Result<T, String>
[src]

Convert return value to a Vec4 convertible type.

Auto Trait Implementations

impl Send for Call

impl !Sync for Call

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto 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> Borrow for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.