[][src]Enum inkling::InklingError

pub enum InklingError {
    Internal(InternalError),
    InvalidAddress(InvalidAddressError),
    InvalidChoice {
        selection: usize,
        presented_choices: Vec<Choice>,
    },
    OutOfChoices {
        address: Address,
    },
    OutOfContent,
    ResumeBeforeStart,
    StartOnStoryInProgress,
    ProcessError,
}

Internal error from walking through a story.

Most likely due to the DialogueNode tree of a story being constructed incorrectly, which will be due to a logical error in the set-up code since the user has no control over it.

Variants

Internal(InternalError)

Internal errors caused by inkling.

InvalidAddress(InvalidAddressError)

An invalid address was encountered when following the story.

InvalidChoice

A choice was made with an internal index that does not match one existing in the set. This means that the choice set presented to the user was not created to represent the set of encountered choices, or that somehow a faulty choice was returned to continue the story with.

Fields of InvalidChoice

selection: usize

Choice input by the user to resume the story with.

presented_choices: Vec<Choice>

List of choices that were available for the selection

OutOfChoices

No choices or fallback choices were available in a story branch at the given address.

Fields of OutOfChoices

address: Address
OutOfContent

No content was available for the story to continue from.

ResumeBeforeStart

Tried to resume a story that has not been started.

StartOnStoryInProgress

Tried to start a story that is already in progress.

ProcessError

Trait Implementations

impl Clone for InklingError[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl From<InvalidAddressError> for InklingError[src]

impl From<String> for InklingError[src]

impl Debug for InklingError[src]

impl Display for InklingError[src]

impl Error for InklingError[src]

fn description(&self) -> &str1.0.0[src]

This method is soft-deprecated. Read more

fn cause(&self) -> Option<&dyn Error>1.0.0[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

The lower-level cause of this error, if any. Read more

fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]

The lower-level source of this error, if any. Read more

Auto Trait Implementations

Blanket Implementations

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.

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

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

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