pub struct GraphEdge {
pub id: Uuid,
pub slug: Uuid,
pub user_id: Uuid,
pub data_id: Uuid,
pub dataset_id: Uuid,
pub source_node_id: Uuid,
pub destination_node_id: Uuid,
pub relationship_name: String,
pub label: Option<String>,
pub attributes: Option<Value>,
pub created_at: DateTime<Utc>,
}Fields§
§id: Uuid§slug: Uuid§user_id: Uuid§data_id: Uuid§dataset_id: Uuid§source_node_id: Uuid§destination_node_id: Uuid§relationship_name: String§label: Option<String>§attributes: Option<Value>§created_at: DateTime<Utc>Trait Implementations§
Source§impl<'de> Deserialize<'de> for GraphEdge
impl<'de> Deserialize<'de> for GraphEdge
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
Source§impl From<&GraphEdge> for ActiveModel
impl From<&GraphEdge> for ActiveModel
Auto Trait Implementations§
impl Freeze for GraphEdge
impl RefUnwindSafe for GraphEdge
impl Send for GraphEdge
impl Sync for GraphEdge
impl Unpin for GraphEdge
impl UnsafeUnpin for GraphEdge
impl UnwindSafe for GraphEdge
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