pub enum CrowsfeetCardinality {
OneToOne,
OneToMany,
ZeroOrOne,
ZeroOrMany,
}Expand description
Cardinality for Crowsfeet notation relationships between ODCS nodes
Variants§
OneToOne
One-to-one relationship (1:1)
OneToMany
One-to-many relationship (1:N)
ZeroOrOne
Zero-or-one relationship (0:1)
ZeroOrMany
Zero-or-many relationship (0:N)
Trait Implementations§
Source§impl Clone for CrowsfeetCardinality
impl Clone for CrowsfeetCardinality
Source§fn clone(&self) -> CrowsfeetCardinality
fn clone(&self) -> CrowsfeetCardinality
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 CrowsfeetCardinality
impl Debug for CrowsfeetCardinality
Source§impl<'de> Deserialize<'de> for CrowsfeetCardinality
impl<'de> Deserialize<'de> for CrowsfeetCardinality
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<CrowsfeetCardinality, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<CrowsfeetCardinality, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CrowsfeetCardinality
impl PartialEq for CrowsfeetCardinality
Source§impl Serialize for CrowsfeetCardinality
impl Serialize for CrowsfeetCardinality
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Copy for CrowsfeetCardinality
impl Eq for CrowsfeetCardinality
impl StructuralPartialEq for CrowsfeetCardinality
Auto Trait Implementations§
impl Freeze for CrowsfeetCardinality
impl RefUnwindSafe for CrowsfeetCardinality
impl Send for CrowsfeetCardinality
impl Sync for CrowsfeetCardinality
impl Unpin for CrowsfeetCardinality
impl UnwindSafe for CrowsfeetCardinality
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.