pub struct GraphCanvasStorageEdge {
pub id: String,
pub kind: String,
pub source: String,
pub target: String,
pub label: String,
pub graph_version: GraphVersion,
pub confidence_basis_points: Option<u16>,
pub evidence_count: Option<usize>,
pub details: BTreeMap<String, String>,
}Expand description
Storage edge projected into the Web graph canvas contract.
Fields§
§id: String§kind: String§source: String§target: String§label: String§graph_version: GraphVersion§confidence_basis_points: Option<u16>§evidence_count: Option<usize>§details: BTreeMap<String, String>Trait Implementations§
Source§impl Clone for GraphCanvasStorageEdge
impl Clone for GraphCanvasStorageEdge
Source§fn clone(&self) -> GraphCanvasStorageEdge
fn clone(&self) -> GraphCanvasStorageEdge
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 GraphCanvasStorageEdge
impl Debug for GraphCanvasStorageEdge
Source§impl PartialEq for GraphCanvasStorageEdge
impl PartialEq for GraphCanvasStorageEdge
Source§fn eq(&self, other: &GraphCanvasStorageEdge) -> bool
fn eq(&self, other: &GraphCanvasStorageEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for GraphCanvasStorageEdge
impl StructuralPartialEq for GraphCanvasStorageEdge
Auto Trait Implementations§
impl Freeze for GraphCanvasStorageEdge
impl RefUnwindSafe for GraphCanvasStorageEdge
impl Send for GraphCanvasStorageEdge
impl Sync for GraphCanvasStorageEdge
impl Unpin for GraphCanvasStorageEdge
impl UnsafeUnpin for GraphCanvasStorageEdge
impl UnwindSafe for GraphCanvasStorageEdge
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§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.