pub enum PostgresInstallerError {
IoError(Error),
NerdctlError(String),
PostgresError(String),
}Variants§
Trait Implementations§
Source§impl Debug for PostgresInstallerError
impl Debug for PostgresInstallerError
Source§impl Display for PostgresInstallerError
impl Display for PostgresInstallerError
Source§impl Error for PostgresInstallerError
impl Error for PostgresInstallerError
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 !RefUnwindSafe for PostgresInstallerError
impl !UnwindSafe for PostgresInstallerError
impl Freeze for PostgresInstallerError
impl Send for PostgresInstallerError
impl Sync for PostgresInstallerError
impl Unpin for PostgresInstallerError
impl UnsafeUnpin for PostgresInstallerError
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