[][src]Struct koto::Koto

pub struct Koto {
    pub settings: KotoSettings,
    // some fields omitted
}

The main interface for the Koto language.

Example

Fields

settings: KotoSettings

Implementations

impl Koto[src]

pub fn new() -> Self[src]

pub fn with_settings(settings: KotoSettings) -> Self[src]

pub fn compile(&mut self, script: &str) -> Result<Arc<Chunk>, LoaderError>[src]

pub fn run_with_args(&mut self, args: &[String]) -> Result<Value, String>[src]

pub fn run(&mut self) -> Result<Value, String>[src]

pub fn run_chunk(&mut self, chunk: Arc<Chunk>) -> Result<Value, String>[src]

pub fn prelude(&self) -> ValueMap[src]

pub fn set_args(&mut self, args: &[String])[src]

pub fn set_script_path(&mut self, path: Option<PathBuf>)[src]

pub fn call_function_by_name(
    &mut self,
    function_name: &str,
    args: &[Value]
) -> Result<Value, String>
[src]

pub fn call_function(
    &mut self,
    function: &RuntimeFunction,
    args: &[Value]
) -> Result<Value, String>
[src]

pub fn format_error(&self, error: Error) -> String[src]

pub fn format_loader_error(&self, error: LoaderError, source: &str) -> String[src]

Trait Implementations

impl Default for Koto[src]

Auto Trait Implementations

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> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

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

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

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.