pub enum RustackError {
InvalidAccountId(String),
Config(String),
Internal(Error),
}Expand description
Core error type for Rustack infrastructure.
Variants§
InvalidAccountId(String)
Invalid AWS account ID format.
Config(String)
Configuration error.
Internal(Error)
Internal error with context.
Trait Implementations§
Source§impl Debug for RustackError
impl Debug for RustackError
Source§impl Display for RustackError
impl Display for RustackError
Source§impl Error for RustackError
impl Error for RustackError
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 RustackError
impl RefUnwindSafe for RustackError
impl Send for RustackError
impl Sync for RustackError
impl Unpin for RustackError
impl UnsafeUnpin for RustackError
impl UnwindSafe for RustackError
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