pub struct QBErrorResponse {
pub warnings: Option<Value>,
pub intuit_object: Option<Value>,
pub fault: Option<Fault>,
pub report: Option<Value>,
pub sync_error_response: Option<Value>,
pub query_response: Option<Vec<Value>>,
pub batch_item_response: Option<Vec<Value>>,
pub request_id: Option<String>,
pub status: Option<String>,
pub cdc_response: Option<Vec<Value>>,
}Expand description
Represents an error response returned by the QuickBooks API.
Fields§
§warnings: Option<Value>§intuit_object: Option<Value>§fault: Option<Fault>§report: Option<Value>§sync_error_response: Option<Value>§query_response: Option<Vec<Value>>§batch_item_response: Option<Vec<Value>>§request_id: Option<String>§status: Option<String>§cdc_response: Option<Vec<Value>>Trait Implementations§
Source§impl Debug for QBErrorResponse
impl Debug for QBErrorResponse
Source§impl Default for QBErrorResponse
impl Default for QBErrorResponse
Source§fn default() -> QBErrorResponse
fn default() -> QBErrorResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QBErrorResponse
impl<'de> Deserialize<'de> for QBErrorResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for QBErrorResponse
impl Display for QBErrorResponse
Auto Trait Implementations§
impl Freeze for QBErrorResponse
impl RefUnwindSafe for QBErrorResponse
impl Send for QBErrorResponse
impl Sync for QBErrorResponse
impl Unpin for QBErrorResponse
impl UnwindSafe for QBErrorResponse
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