Enum dusk_api::RuntimeError[][src]

pub enum RuntimeError {
    Message {
        msg: &'static str,
    },
}

Enum, that represents a message passed to the program using the plugin when the function fails

Variants

Message

Send a message, representing the runtime error, that occured while using a function.

Example

fn call_function (
    self: &mut Self,
    _function_number: u64,
    _args: Vec<&mut Box<dyn Any>>
    ) -> Result<Box<dyn Any>, RuntimeError> {
    Err(RuntimeError::Message{
        msg: "You can't call an empty freight"
    })
}

Fields of Message

msg: &'static str

Trait Implementations

impl Debug for RuntimeError[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> 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.