pub struct ProductCode {
pub product_code_id: Option<String>,
pub product_code_type: Option<String>,
}Expand description
Describes a product code.
Fields§
§product_code_id: Option<String>The product code.
product_code_type: Option<String>The type of product code.
Trait Implementations§
Source§impl Clone for ProductCode
impl Clone for ProductCode
Source§fn clone(&self) -> ProductCode
fn clone(&self) -> ProductCode
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 Debug for ProductCode
impl Debug for ProductCode
Source§impl Default for ProductCode
impl Default for ProductCode
Source§fn default() -> ProductCode
fn default() -> ProductCode
Returns the “default value” for a type. Read more
Source§impl PartialEq for ProductCode
impl PartialEq for ProductCode
impl StructuralPartialEq for ProductCode
Auto Trait Implementations§
impl Freeze for ProductCode
impl RefUnwindSafe for ProductCode
impl Send for ProductCode
impl Sync for ProductCode
impl Unpin for ProductCode
impl UnwindSafe for ProductCode
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