pub enum ProductRelationshipType {
DependsOn,
Excludes,
Requires,
MigratesTo,
}Expand description
Product relationship between offerings (TMF-style graph edge).
Variants§
Trait Implementations§
Source§impl Clone for ProductRelationshipType
impl Clone for ProductRelationshipType
Source§fn clone(&self) -> ProductRelationshipType
fn clone(&self) -> ProductRelationshipType
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 ProductRelationshipType
impl Debug for ProductRelationshipType
Source§impl<'de> Deserialize<'de> for ProductRelationshipType
impl<'de> Deserialize<'de> for ProductRelationshipType
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
impl Eq for ProductRelationshipType
Source§impl PartialEq for ProductRelationshipType
impl PartialEq for ProductRelationshipType
Source§impl Serialize for ProductRelationshipType
impl Serialize for ProductRelationshipType
impl StructuralPartialEq for ProductRelationshipType
Auto Trait Implementations§
impl Freeze for ProductRelationshipType
impl RefUnwindSafe for ProductRelationshipType
impl Send for ProductRelationshipType
impl Sync for ProductRelationshipType
impl Unpin for ProductRelationshipType
impl UnsafeUnpin for ProductRelationshipType
impl UnwindSafe for ProductRelationshipType
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