pub trait QBQueryable: QBItem { }Expand description
Trait for entities that can be queried from QuickBooks.
This trait is automatically implemented for all QBItem types and indicates
that the entity supports QuickBooks SQL-like query operations.
§Examples
use quickbooks_types::{Customer, QBQueryable};
// All QBItem types automatically implement QBQueryable
let customer = Customer::default();Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.