pub struct OrderStatusBreakdownOutput {
pub pending: u32,
pub confirmed: u32,
pub processing: u32,
pub shipped: u32,
pub delivered: u32,
pub cancelled: u32,
pub refunded: u32,
}Fields§
§pending: u32§confirmed: u32§processing: u32§shipped: u32§delivered: u32§cancelled: u32§refunded: u32Trait Implementations§
Source§impl Clone for OrderStatusBreakdownOutput
impl Clone for OrderStatusBreakdownOutput
Source§fn clone(&self) -> OrderStatusBreakdownOutput
fn clone(&self) -> OrderStatusBreakdownOutput
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl FromNapiValue for OrderStatusBreakdownOutput
impl FromNapiValue for OrderStatusBreakdownOutput
Source§unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
unsafe fn from_napi_value(env: napi_env, napi_val: napi_value) -> Result<Self>
Safety Read more
fn from_unknown(value: JsUnknown) -> Result<Self, Error>
Source§impl ToNapiValue for OrderStatusBreakdownOutput
impl ToNapiValue for OrderStatusBreakdownOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: OrderStatusBreakdownOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: OrderStatusBreakdownOutput, ) -> Result<napi_value>
Safety Read more
Source§impl ValidateNapiValue for OrderStatusBreakdownOutput
impl ValidateNapiValue for OrderStatusBreakdownOutput
Source§unsafe fn validate(
env: *mut napi_env__,
napi_val: *mut napi_value__,
) -> Result<*mut napi_value__, Error>
unsafe fn validate( env: *mut napi_env__, napi_val: *mut napi_value__, ) -> Result<*mut napi_value__, Error>
Safety Read more
Auto Trait Implementations§
impl Freeze for OrderStatusBreakdownOutput
impl RefUnwindSafe for OrderStatusBreakdownOutput
impl Send for OrderStatusBreakdownOutput
impl Sync for OrderStatusBreakdownOutput
impl Unpin for OrderStatusBreakdownOutput
impl UnsafeUnpin for OrderStatusBreakdownOutput
impl UnwindSafe for OrderStatusBreakdownOutput
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