Struct indradb::Edge[][src]

pub struct Edge {
    pub key: EdgeKey,
    pub created_datetime: DateTime<Utc>,
}

An edge.

Edges are how you would represent a verb or a relationship in the datastore. An example might be "liked" or "reviewed". Edges are typed and directed.

Fields

key: EdgeKey

The key to the edge.

created_datetime: DateTime<Utc>

When the edge was created.

Implementations

impl Edge[src]

pub fn new_with_current_datetime(key: EdgeKey) -> Edge[src]

Creates a new edge with the current datetime in UTC.

Arguments

  • key: The key to the edge.

pub fn new(key: EdgeKey, created_datetime: DateTime<Utc>) -> Edge[src]

Creates a new edge with a specified datetime.

Arguments

  • key: The key to the edge.
  • created_datetime: When the edge was created.

Trait Implementations

impl Clone for Edge[src]

impl Debug for Edge[src]

impl Eq for Edge[src]

impl PartialEq<Edge> for Edge[src]

impl StructuralEq for Edge[src]

impl StructuralPartialEq for Edge[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,