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.
Directory creation failed
ConfigParseError(String)Errors related to malformed config.
Trait Implementations
impl Debug for AppServiceError[src]
impl Debug for AppServiceError[src]impl Display for AppServiceError[src]
impl Display for AppServiceError[src]impl Error for AppServiceError[src]
impl Error for AppServiceError[src]fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]
fn source(&self) -> Option<&(dyn Error + 'static)>1.30.0[src]The lower-level source of this error, if any. Read more
fn backtrace(&self) -> Option<&Backtrace>[src]
fn backtrace(&self) -> Option<&Backtrace>[src]🔬 This is a nightly-only experimental API. (
backtrace)Returns a stack backtrace, if available, of where this error occurred. Read more
fn description(&self) -> &str1.0.0[src]
fn description(&self) -> &str1.0.0[src]👎 Deprecated since 1.42.0:
use the Display impl or to_string()
impl From<FaaSError> for AppServiceError[src]
impl From<FaaSError> for AppServiceError[src]impl From<Infallible> for AppServiceError[src]
impl From<Infallible> for AppServiceError[src]fn from(_: Infallible) -> Self[src]
fn from(_: Infallible) -> Self[src]Performs the conversion.
Auto Trait Implementations
impl !RefUnwindSafe for AppServiceError
impl Send for AppServiceError
impl Sync for AppServiceError
impl Unpin for AppServiceError
impl !UnwindSafe for AppServiceError
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for Timpl<T> Same<T> for T
impl<T> Same<T> for Ttype Output = T
type Output = TShould always be Self