pub struct BackorderOutput {
pub id: String,
pub backorder_number: String,
pub order_id: String,
pub customer_id: String,
pub sku: String,
pub quantity_ordered: f64,
pub quantity_fulfilled: f64,
pub quantity_remaining: f64,
pub status: String,
pub priority: String,
pub created_at: String,
}Fields§
§id: String§backorder_number: String§order_id: String§customer_id: String§sku: String§quantity_ordered: f64§quantity_fulfilled: f64§quantity_remaining: f64§status: String§priority: String§created_at: StringTrait Implementations§
Source§impl Clone for BackorderOutput
impl Clone for BackorderOutput
Source§fn clone(&self) -> BackorderOutput
fn clone(&self) -> BackorderOutput
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<'de> Deserialize<'de> for BackorderOutput
impl<'de> Deserialize<'de> for BackorderOutput
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 From<Backorder> for BackorderOutput
impl From<Backorder> for BackorderOutput
Source§impl FromNapiValue for BackorderOutput
impl FromNapiValue for BackorderOutput
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 Serialize for BackorderOutput
impl Serialize for BackorderOutput
Source§impl ToNapiValue for BackorderOutput
impl ToNapiValue for BackorderOutput
Source§unsafe fn to_napi_value(
env: napi_env,
val: BackorderOutput,
) -> Result<napi_value>
unsafe fn to_napi_value( env: napi_env, val: BackorderOutput, ) -> Result<napi_value>
Safety Read more
Source§impl TypeName for BackorderOutput
impl TypeName for BackorderOutput
Source§impl ValidateNapiValue for BackorderOutput
impl ValidateNapiValue for BackorderOutput
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 BackorderOutput
impl RefUnwindSafe for BackorderOutput
impl Send for BackorderOutput
impl Sync for BackorderOutput
impl Unpin for BackorderOutput
impl UnsafeUnpin for BackorderOutput
impl UnwindSafe for BackorderOutput
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