Skip to main content

ScriptBuilder

Struct ScriptBuilder 

Source
pub struct ScriptBuilder<'a, SE: ScriptExpression>(/* private fields */);
Expand description

Assembles a Script one operation at a time.

let script = ScriptBuilder::<MyExpression>::default()
    .expression(MyExpression::Literal(40))
    .expression(MyExpression::Literal(2))
    .call_function(FunctionQuery { name: Some("add".into()), ..Default::default() })
    .build();

Implementations§

Source§

impl<'a, SE: ScriptExpression> ScriptBuilder<'a, SE>

Source

pub fn build(self) -> ScriptHandle<'a, SE>

Finishes the script and shares it.

Source

pub fn expression(self, expression: SE) -> Self

Source

pub fn define_register(self, query: TypeQuery<'a>) -> Self

Source

pub fn drop_register(self, index: usize) -> Self

Source

pub fn push_from_register(self, index: usize) -> Self

Source

pub fn pop_to_register(self, index: usize) -> Self

Source

pub fn move_register(self, from: usize, to: usize) -> Self

Source

pub fn call_function(self, query: FunctionQuery<'a>) -> Self

Source

pub fn branch_scope( self, scope_success: ScriptHandle<'a, SE>, scope_failure: Option<ScriptHandle<'a, SE>>, ) -> Self

Source

pub fn loop_scope(self, scope: ScriptHandle<'a, SE>) -> Self

Source

pub fn push_scope(self, scope: ScriptHandle<'a, SE>) -> Self

Source

pub fn pop_scope(self) -> Self

Source

pub fn continue_scope_conditionally(self) -> Self

Source

pub fn suspend(self) -> Self

Trait Implementations§

Source§

impl<SE: ScriptExpression> Default for ScriptBuilder<'_, SE>

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

§

impl<'a, SE> Freeze for ScriptBuilder<'a, SE>
where Vec<ScriptOperation<'a, SE>>: Freeze,

§

impl<'a, SE> RefUnwindSafe for ScriptBuilder<'a, SE>

§

impl<'a, SE> Send for ScriptBuilder<'a, SE>
where Vec<ScriptOperation<'a, SE>>: Send,

§

impl<'a, SE> Sync for ScriptBuilder<'a, SE>
where Vec<ScriptOperation<'a, SE>>: Sync,

§

impl<'a, SE> Unpin for ScriptBuilder<'a, SE>
where Vec<ScriptOperation<'a, SE>>: Unpin,

§

impl<'a, SE> UnsafeUnpin for ScriptBuilder<'a, SE>

§

impl<'a, SE> UnwindSafe for ScriptBuilder<'a, SE>
where Vec<ScriptOperation<'a, SE>>: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> Finalize for T

Source§

unsafe fn finalize_raw(data: *mut ())

Drops the value stored at data in place. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Initialize for T
where T: Default,

Source§

fn initialize() -> T

Returns the initial value of this type.
Source§

unsafe fn initialize_raw(data: *mut ())

Writes the initial value into already allocated memory. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

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

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

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

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.