Enum pgdo::version::VersionError
source · pub enum VersionError {
BadlyFormed {
text: Option<String>,
},
NotFound {
text: Option<String>,
},
}
Expand description
Error parsing a PostgreSQL version number.
Variants§
Implementations§
Trait Implementations§
source§impl Debug for VersionError
impl Debug for VersionError
source§impl Display for VersionError
impl Display for VersionError
source§impl Error for VersionError
impl Error for VersionError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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()
source§impl From<VersionError> for ClusterError
impl From<VersionError> for ClusterError
source§fn from(error: VersionError) -> ClusterError
fn from(error: VersionError) -> ClusterError
Converts to this type from the input type.
source§impl From<VersionError> for ConstraintError
impl From<VersionError> for ConstraintError
source§fn from(error: VersionError) -> ConstraintError
fn from(error: VersionError) -> ConstraintError
Converts to this type from the input type.
source§impl From<VersionError> for RuntimeError
impl From<VersionError> for RuntimeError
source§fn from(error: VersionError) -> RuntimeError
fn from(error: VersionError) -> RuntimeError
Converts to this type from the input type.
source§impl PartialEq for VersionError
impl PartialEq for VersionError
source§fn eq(&self, other: &VersionError) -> bool
fn eq(&self, other: &VersionError) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for VersionError
Auto Trait Implementations§
impl RefUnwindSafe for VersionError
impl Send for VersionError
impl Sync for VersionError
impl Unpin for VersionError
impl UnwindSafe for VersionError
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