pub enum ActionsError {
FailedLoading(String),
InputError(String),
InputTypeError(String, String),
IoError(Error),
RepositoryReferenceError(String),
IOError(String),
NotImplemented,
}
Expand description
Actions Error
Variants§
FailedLoading(String)
Failed to load the environment
InputError(String)
Failed to get input value from environment
InputTypeError(String, String)
Input Type Error
IoError(Error)
IO Error
RepositoryReferenceError(String)
Failed parsing the repository reference
IOError(String)
IO Error
NotImplemented
Not Implemented
Trait Implementations§
Source§impl Debug for ActionsError
impl Debug for ActionsError
Source§impl Display for ActionsError
impl Display for ActionsError
Source§impl Error for ActionsError
impl Error for ActionsError
Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for ActionsError
impl !RefUnwindSafe for ActionsError
impl Send for ActionsError
impl Sync for ActionsError
impl Unpin for ActionsError
impl !UnwindSafe for ActionsError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more