pub enum LineStyle {
Identifying,
NonIdentifying,
}Expand description
Connector style between two cardinality halves of a relationship.
Mermaid distinguishes -- (identifying — solid line, child cannot
exist without parent) from .. (non-identifying — dashed line,
looser association).
Variants§
Identifying
-- — solid line. Child entity’s identity depends on parent’s.
NonIdentifying
.. — dashed line. Looser association.
Implementations§
Trait Implementations§
impl Copy for LineStyle
impl Eq for LineStyle
impl StructuralPartialEq for LineStyle
Auto Trait Implementations§
impl Freeze for LineStyle
impl RefUnwindSafe for LineStyle
impl Send for LineStyle
impl Sync for LineStyle
impl Unpin for LineStyle
impl UnsafeUnpin for LineStyle
impl UnwindSafe for LineStyle
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