pub struct UnifiedEdge {
pub from: String,
pub to: String,
pub relation: String,
}Expand description
An edge in the unified graph
Fields§
§from: String§to: String§relation: StringTrait Implementations§
Source§impl Clone for UnifiedEdge
impl Clone for UnifiedEdge
Source§fn clone(&self) -> UnifiedEdge
fn clone(&self) -> UnifiedEdge
Returns a duplicate of the value. Read more
1.0.0 · 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 UnifiedEdge
impl Debug for UnifiedEdge
Source§impl<'de> Deserialize<'de> for UnifiedEdge
impl<'de> Deserialize<'de> for UnifiedEdge
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 UnifiedEdge
impl RefUnwindSafe for UnifiedEdge
impl Send for UnifiedEdge
impl Sync for UnifiedEdge
impl Unpin for UnifiedEdge
impl UnsafeUnpin for UnifiedEdge
impl UnwindSafe for UnifiedEdge
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