pub struct Commerce { /* private fields */ }Implementations§
Source§impl Commerce
impl Commerce
pub fn __construct(db_path: String) -> PhpResult<Self>
pub fn customers(&self) -> Customers
pub fn orders(&self) -> Orders
pub fn products(&self) -> Products
pub fn inventory(&self) -> Inventory
pub fn returns(&self) -> Returns
pub fn payments(&self) -> Payments
pub fn shipments(&self) -> Shipments
pub fn warranties(&self) -> Warranties
pub fn purchase_orders(&self) -> PurchaseOrders
pub fn invoices(&self) -> Invoices
pub fn bom(&self) -> BomApi
pub fn work_orders(&self) -> WorkOrders
pub fn carts(&self) -> Carts
pub fn analytics(&self) -> Analytics
pub fn currency(&self) -> CurrencyOps
pub fn subscriptions(&self) -> Subscriptions
pub fn promotions(&self) -> Promotions
pub fn tax(&self) -> Tax
pub fn quality(&self) -> Quality
pub fn lots(&self) -> Lots
pub fn serials(&self) -> Serials
pub fn warehouse(&self) -> WarehouseApi
pub fn receiving(&self) -> Receiving
pub fn fulfillment(&self) -> Fulfillment
pub fn accounts_payable(&self) -> AccountsPayable
pub fn accounts_receivable(&self) -> AccountsReceivable
pub fn cost_accounting(&self) -> CostAccounting
pub fn credit(&self) -> CreditApi
pub fn backorders(&self) -> Backorders
pub fn general_ledger(&self) -> GeneralLedger
Trait Implementations§
Source§impl<'a> FromZendObject<'a> for &'a Commerce
impl<'a> FromZendObject<'a> for &'a Commerce
Source§fn from_zend_object(obj: &'a ZendObject) -> Result<Self>
fn from_zend_object(obj: &'a ZendObject) -> Result<Self>
Extracts
Self from the source ZendObject.Source§impl<'a> FromZendObjectMut<'a> for &'a mut Commerce
impl<'a> FromZendObjectMut<'a> for &'a mut Commerce
Source§fn from_zend_object_mut(obj: &'a mut ZendObject) -> Result<Self>
fn from_zend_object_mut(obj: &'a mut ZendObject) -> Result<Self>
Extracts
Self from the source ZendObject.Source§impl<'a> FromZvalMut<'a> for &'a mut Commerce
impl<'a> FromZvalMut<'a> for &'a mut Commerce
Source§impl IntoZendObject for Commerce
impl IntoZendObject for Commerce
Source§fn into_zend_object(self) -> Result<ZBox<ZendObject>>
fn into_zend_object(self) -> Result<ZBox<ZendObject>>
Attempts to convert
self into a Zend object.Source§impl IntoZval for Commerce
impl IntoZval for Commerce
Source§impl RegisteredClass for Commerce
impl RegisteredClass for Commerce
Source§const CLASS_NAME: &'static str = "StateSet\\Commerce"
const CLASS_NAME: &'static str = "StateSet\\Commerce"
PHP class name of the registered class.
Source§const CONSTRUCTOR: Option<ConstructorMeta<Self>>
const CONSTRUCTOR: Option<ConstructorMeta<Self>>
Optional class constructor.
Source§fn get_metadata() -> &'static ClassMetadata<Self>
fn get_metadata() -> &'static ClassMetadata<Self>
Returns a reference to the class metadata, which stores the class entry
and handlers. Read more
Auto Trait Implementations§
impl Freeze for Commerce
impl RefUnwindSafe for Commerce
impl Send for Commerce
impl Sync for Commerce
impl Unpin for Commerce
impl UnsafeUnpin for Commerce
impl UnwindSafe for Commerce
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