[−][src]Enum treescript_interpreter::lib_process::BasicLibProcessError
Variants
UnknownFunction(String)
InvalidNumArgs
Fields of InvalidNumArgs
InvalidArgTypes
Fields of InvalidArgTypes
NotFunction(Value)
Unsupported(String)
IOError(Error)
Trait Implementations
impl LibProcessError for BasicLibProcessError
[src]
fn unknown_function(name: String) -> BasicLibProcessError
[src]
fn invalid_num_args(
fun: String,
expected: usize,
actual: usize
) -> BasicLibProcessError
[src]
fun: String,
expected: usize,
actual: usize
) -> BasicLibProcessError
fn invalid_arg_types(actual: Vec<Value>, expected: String) -> Self
[src]
fn not_function(value: Value) -> BasicLibProcessError
[src]
fn unsupported(reason: String) -> BasicLibProcessError
[src]
impl From<Error> for BasicLibProcessError
[src]
fn from(err: Error) -> BasicLibProcessError
[src]
impl Debug for BasicLibProcessError
[src]
Auto Trait Implementations
impl Send for BasicLibProcessError
impl Sync for BasicLibProcessError
Blanket Implementations
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> From for T
[src]
impl<T, U> TryFrom for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,