pub struct ProductRelationship {
pub id: Uuid,
pub from_offering_id: Uuid,
pub to_offering_id: Uuid,
pub relationship_type: ProductRelationshipType,
}Fields§
§id: Uuid§from_offering_id: Uuid§to_offering_id: Uuid§relationship_type: ProductRelationshipTypeTrait Implementations§
Source§impl Clone for ProductRelationship
impl Clone for ProductRelationship
Source§fn clone(&self) -> ProductRelationship
fn clone(&self) -> ProductRelationship
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 ProductRelationship
impl Debug for ProductRelationship
Source§impl<'de> Deserialize<'de> for ProductRelationship
impl<'de> Deserialize<'de> for ProductRelationship
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
Auto Trait Implementations§
impl Freeze for ProductRelationship
impl RefUnwindSafe for ProductRelationship
impl Send for ProductRelationship
impl Sync for ProductRelationship
impl Unpin for ProductRelationship
impl UnsafeUnpin for ProductRelationship
impl UnwindSafe for ProductRelationship
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