pub struct ProductResponse {
pub warnings: Option<Box<WarningCollection>>,
pub problems: Option<Vec<Problem>>,
pub product: Option<Box<Product>>,
}Fields§
§warnings: Option<Box<WarningCollection>>§problems: Option<Vec<Problem>>§product: Option<Box<Product>>Implementations§
Source§impl ProductResponse
impl ProductResponse
pub fn new() -> ProductResponse
Trait Implementations§
Source§impl Clone for ProductResponse
impl Clone for ProductResponse
Source§fn clone(&self) -> ProductResponse
fn clone(&self) -> ProductResponse
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 ProductResponse
impl Debug for ProductResponse
Source§impl Default for ProductResponse
impl Default for ProductResponse
Source§fn default() -> ProductResponse
fn default() -> ProductResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProductResponse
impl<'de> Deserialize<'de> for ProductResponse
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 PartialEq for ProductResponse
impl PartialEq for ProductResponse
Source§impl Serialize for ProductResponse
impl Serialize for ProductResponse
impl StructuralPartialEq for ProductResponse
Auto Trait Implementations§
impl Freeze for ProductResponse
impl RefUnwindSafe for ProductResponse
impl Send for ProductResponse
impl Sync for ProductResponse
impl Unpin for ProductResponse
impl UnwindSafe for ProductResponse
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