pub struct LinkCommand {
pub source_id: String,
pub edge_type: String,
pub target_id: String,
pub metadata: HashMap<String, Value>,
}Expand description
LINK command
Fields§
§source_id: String§edge_type: String§target_id: String§metadata: HashMap<String, Value>Trait Implementations§
Source§impl Clone for LinkCommand
impl Clone for LinkCommand
Source§fn clone(&self) -> LinkCommand
fn clone(&self) -> LinkCommand
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 LinkCommand
impl Debug for LinkCommand
Source§impl<'de> Deserialize<'de> for LinkCommand
impl<'de> Deserialize<'de> for LinkCommand
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 PartialEq for LinkCommand
impl PartialEq for LinkCommand
Source§impl Serialize for LinkCommand
impl Serialize for LinkCommand
impl StructuralPartialEq for LinkCommand
Auto Trait Implementations§
impl Freeze for LinkCommand
impl RefUnwindSafe for LinkCommand
impl Send for LinkCommand
impl Sync for LinkCommand
impl Unpin for LinkCommand
impl UnwindSafe for LinkCommand
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