Enum fluence_app_service::AppServiceError[][src]

pub enum AppServiceError {
    InvalidConfig(String),
    IOError(IOError),
    FaaSError(FaaSError),
    CreateDir {
        err: IOError,
        path: PathBuf,
    },
    ConfigParseError(String),
}

Variants

InvalidConfig(String)

An error related to config parsing.

IOError(IOError)

Various errors related to file i/o.

FaaSError(FaaSError)

FaaS errors.

CreateDir

Directory creation failed

Fields of CreateDir

err: IOErrorpath: PathBuf
ConfigParseError(String)

Errors related to malformed config.

Trait Implementations

impl Debug for AppServiceError[src]

impl Display for AppServiceError[src]

impl Error for AppServiceError[src]

impl From<Error> for AppServiceError[src]

impl From<Error> for AppServiceError[src]

impl From<FaaSError> for AppServiceError[src]

impl From<Infallible> for AppServiceError[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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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.