Enum sppparse::SparseError[][src]

pub enum SparseError {
Show variants UnkownPath(String), OutdatedPointer, BadPointer, NoRoot, StateAlreadyBorrowed, NoDistantFile, CyclicRef, MuttatingRoot, AlreadyExistsInState, ChangingExistingBasePath, NotInState, SerdeJson(Error), SerdeYaml(Error), Io(Error),
}

Variants

UnkownPath(String)

When the JSON Pointer point to undefined

OutdatedPointer

When the value of a pointer has changed

BadPointer

When a SparseSelector is Null

NoRoot

When the SparseState has no root file

StateAlreadyBorrowed

Prevent the RefCell from panicking

NoDistantFile

When the state is not capable of accepting distant file in a pointer

CyclicRef

When there is a recursive pointer

MuttatingRoot

One of the limitation of Sparse is the inability to modify root elements from a pointer referencing it.

AlreadyExistsInState

When adding a file to the state but it already exists

ChangingExistingBasePath

When changing the base path of a state.

NotInState

When a pointer points to a file that is not in the state

SerdeJson(Error)

When there is a failure while deserializing the JSON

SerdeYaml(Error)

When there is a failure while deserializing the YAML

Io(Error)

When there is an IO failure

Trait Implementations

impl Debug for SparseError[src]

impl Display for SparseError[src]

impl Error for SparseError[src]

impl From<Error> for SparseError[src]

impl From<Error> for SparseError[src]

impl From<Error> for SparseError[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> 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<V, T> VZip<V> for T where
    V: MultiLane<T>,