pub enum QBTypeError {
MissingField(&'static str),
QBToRefError,
}Expand description
Errors for Quickbooks validation / processing
Variants§
Trait Implementations§
Source§impl Debug for QBTypeError
impl Debug for QBTypeError
Source§impl Display for QBTypeError
impl Display for QBTypeError
Source§impl Error for QBTypeError
impl Error for QBTypeError
1.30.0 · 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()
Source§impl From<QBTypeError> for APIErrorInner
impl From<QBTypeError> for APIErrorInner
Source§fn from(source: QBTypeError) -> Self
fn from(source: QBTypeError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for QBTypeError
impl RefUnwindSafe for QBTypeError
impl Send for QBTypeError
impl Sync for QBTypeError
impl Unpin for QBTypeError
impl UnwindSafe for QBTypeError
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