pub struct StaticEdge {
pub domainnode_id: String,
pub rangenode_id: String,
pub edgeid: String,
pub graph_id: String,
pub name: Option<String>,
pub ontologyproperty: Option<String>,
pub description: Option<String>,
pub source_identifier_id: Option<String>,
}Expand description
An edge connecting two nodes (domain -> range)
Fields§
§domainnode_id: String§rangenode_id: String§edgeid: String§graph_id: String§name: Option<String>§ontologyproperty: Option<String>§description: Option<String>§source_identifier_id: Option<String>Source identifier for import/export tracking
Implementations§
Trait Implementations§
Source§impl Clone for StaticEdge
impl Clone for StaticEdge
Source§fn clone(&self) -> StaticEdge
fn clone(&self) -> StaticEdge
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 StaticEdge
impl Debug for StaticEdge
Source§impl<'de> Deserialize<'de> for StaticEdge
impl<'de> Deserialize<'de> for StaticEdge
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
Auto Trait Implementations§
impl Freeze for StaticEdge
impl RefUnwindSafe for StaticEdge
impl Send for StaticEdge
impl Sync for StaticEdge
impl Unpin for StaticEdge
impl UnsafeUnpin for StaticEdge
impl UnwindSafe for StaticEdge
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