pub enum MemoryGraphStyle {
ProvenanceReceiptDag,
CanonicalMemoryGraph,
SemanticCatalogGraph,
SimilarityOverlayGraph,
DependencyDag,
RoutingViewGraph,
ContradictionSupersessionGraph,
ContextPacketGraph,
}Expand description
Memory graph style names used by the graph-organization layer.
Variants§
ProvenanceReceiptDag
CanonicalMemoryGraph
SemanticCatalogGraph
SimilarityOverlayGraph
DependencyDag
RoutingViewGraph
ContradictionSupersessionGraph
ContextPacketGraph
Trait Implementations§
Source§impl Clone for MemoryGraphStyle
impl Clone for MemoryGraphStyle
Source§fn clone(&self) -> MemoryGraphStyle
fn clone(&self) -> MemoryGraphStyle
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 moreimpl Copy for MemoryGraphStyle
Source§impl Debug for MemoryGraphStyle
impl Debug for MemoryGraphStyle
Source§impl<'de> Deserialize<'de> for MemoryGraphStyle
impl<'de> Deserialize<'de> for MemoryGraphStyle
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 MemoryGraphStyle
Source§impl Ord for MemoryGraphStyle
impl Ord for MemoryGraphStyle
Source§fn cmp(&self, other: &MemoryGraphStyle) -> Ordering
fn cmp(&self, other: &MemoryGraphStyle) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MemoryGraphStyle
impl PartialEq for MemoryGraphStyle
Source§fn eq(&self, other: &MemoryGraphStyle) -> bool
fn eq(&self, other: &MemoryGraphStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for MemoryGraphStyle
impl PartialOrd for MemoryGraphStyle
Source§impl Serialize for MemoryGraphStyle
impl Serialize for MemoryGraphStyle
impl StructuralPartialEq for MemoryGraphStyle
Auto Trait Implementations§
impl Freeze for MemoryGraphStyle
impl RefUnwindSafe for MemoryGraphStyle
impl Send for MemoryGraphStyle
impl Sync for MemoryGraphStyle
impl Unpin for MemoryGraphStyle
impl UnsafeUnpin for MemoryGraphStyle
impl UnwindSafe for MemoryGraphStyle
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