pub enum GraphViewType {
FullProvenance,
RoutingView,
CanonicalView,
DependencyView,
ContradictionView,
ContextPacketView,
}Expand description
Rebuildable graph view kind.
Variants§
Trait Implementations§
Source§impl Clone for GraphViewType
impl Clone for GraphViewType
Source§fn clone(&self) -> GraphViewType
fn clone(&self) -> GraphViewType
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 GraphViewType
Source§impl Debug for GraphViewType
impl Debug for GraphViewType
Source§impl<'de> Deserialize<'de> for GraphViewType
impl<'de> Deserialize<'de> for GraphViewType
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<GraphViewType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<GraphViewType, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for GraphViewType
Source§impl Ord for GraphViewType
impl Ord for GraphViewType
Source§fn cmp(&self, other: &GraphViewType) -> Ordering
fn cmp(&self, other: &GraphViewType) -> 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 GraphViewType
impl PartialEq for GraphViewType
Source§fn eq(&self, other: &GraphViewType) -> bool
fn eq(&self, other: &GraphViewType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for GraphViewType
impl PartialOrd for GraphViewType
Source§impl Serialize for GraphViewType
impl Serialize for GraphViewType
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 StructuralPartialEq for GraphViewType
Auto Trait Implementations§
impl Freeze for GraphViewType
impl RefUnwindSafe for GraphViewType
impl Send for GraphViewType
impl Sync for GraphViewType
impl Unpin for GraphViewType
impl UnsafeUnpin for GraphViewType
impl UnwindSafe for GraphViewType
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