pub struct ProductConcept {
pub id: String,
pub name: String,
pub description: Option<String>,
pub market_context: ProductConceptContextRef,
}Fields§
§id: String§name: String§description: Option<String>§market_context: ProductConceptContextRefTrait Implementations§
Source§impl Clone for ProductConcept
impl Clone for ProductConcept
Source§fn clone(&self) -> ProductConcept
fn clone(&self) -> ProductConcept
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProductConcept
impl Debug for ProductConcept
Source§impl PartialEq for ProductConcept
impl PartialEq for ProductConcept
Source§fn eq(&self, other: &ProductConcept) -> bool
fn eq(&self, other: &ProductConcept) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProductConcept
Auto Trait Implementations§
impl Freeze for ProductConcept
impl RefUnwindSafe for ProductConcept
impl Send for ProductConcept
impl Sync for ProductConcept
impl Unpin for ProductConcept
impl UnsafeUnpin for ProductConcept
impl UnwindSafe for ProductConcept
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