pub struct ConvexNodeRow {
pub external_id: String,
pub kind: String,
pub label: String,
pub properties: BTreeMap<String, String>,
pub provenance: Vec<GraphProvenance>,
pub freshness: Option<GraphFreshness>,
}Fields§
§external_id: String§kind: String§label: String§properties: BTreeMap<String, String>§provenance: Vec<GraphProvenance>§freshness: Option<GraphFreshness>Trait Implementations§
Source§impl Clone for ConvexNodeRow
impl Clone for ConvexNodeRow
Source§fn clone(&self) -> ConvexNodeRow
fn clone(&self) -> ConvexNodeRow
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 ConvexNodeRow
impl Debug for ConvexNodeRow
Source§impl<'de> Deserialize<'de> for ConvexNodeRow
impl<'de> Deserialize<'de> for ConvexNodeRow
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConvexNodeRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ConvexNodeRow, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ConvexNodeRow
Source§impl From<&GraphNode> for ConvexNodeRow
impl From<&GraphNode> for ConvexNodeRow
Source§fn from(node: &GraphNode) -> ConvexNodeRow
fn from(node: &GraphNode) -> ConvexNodeRow
Converts to this type from the input type.
Source§impl From<ConvexNodeRow> for GraphNode
impl From<ConvexNodeRow> for GraphNode
Source§fn from(row: ConvexNodeRow) -> GraphNode
fn from(row: ConvexNodeRow) -> GraphNode
Converts to this type from the input type.
Source§impl PartialEq for ConvexNodeRow
impl PartialEq for ConvexNodeRow
Source§fn eq(&self, other: &ConvexNodeRow) -> bool
fn eq(&self, other: &ConvexNodeRow) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ConvexNodeRow
impl Serialize for ConvexNodeRow
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 ConvexNodeRow
Auto Trait Implementations§
impl Freeze for ConvexNodeRow
impl RefUnwindSafe for ConvexNodeRow
impl Send for ConvexNodeRow
impl Sync for ConvexNodeRow
impl Unpin for ConvexNodeRow
impl UnsafeUnpin for ConvexNodeRow
impl UnwindSafe for ConvexNodeRow
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