pub enum PGQueryError {
ParsingCString,
JsonParse(String),
QueryToCString,
PGParseError(ParseError),
}
Variants§
Trait Implementations§
Source§impl Debug for PGQueryError
impl Debug for PGQueryError
Source§impl From<Error> for PGQueryError
impl From<Error> for PGQueryError
Source§impl From<IntoStringError> for PGQueryError
impl From<IntoStringError> for PGQueryError
Source§fn from(_: IntoStringError) -> Self
fn from(_: IntoStringError) -> Self
Converts to this type from the input type.
Source§impl From<NulError> for PGQueryError
impl From<NulError> for PGQueryError
Source§impl From<Utf8Error> for PGQueryError
impl From<Utf8Error> for PGQueryError
Source§impl PartialEq for PGQueryError
impl PartialEq for PGQueryError
Source§impl Serialize for PGQueryError
impl Serialize for PGQueryError
impl StructuralPartialEq for PGQueryError
Auto Trait Implementations§
impl Freeze for PGQueryError
impl RefUnwindSafe for PGQueryError
impl Send for PGQueryError
impl Sync for PGQueryError
impl Unpin for PGQueryError
impl UnwindSafe for PGQueryError
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