pub struct NodeConnection {
pub from_node: String,
pub from_pin: String,
pub to_node: String,
pub to_pin: String,
}Fields§
§from_node: String§from_pin: String§to_node: String§to_pin: StringTrait Implementations§
Source§impl Clone for NodeConnection
impl Clone for NodeConnection
Source§fn clone(&self) -> NodeConnection
fn clone(&self) -> NodeConnection
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 NodeConnection
impl Debug for NodeConnection
Source§impl Default for NodeConnection
impl Default for NodeConnection
Source§fn default() -> NodeConnection
fn default() -> NodeConnection
Returns the “default value” for a type. Read more
Source§impl Hash for NodeConnection
impl Hash for NodeConnection
Source§impl PartialEq for NodeConnection
impl PartialEq for NodeConnection
impl Eq for NodeConnection
impl StructuralPartialEq for NodeConnection
Auto Trait Implementations§
impl Freeze for NodeConnection
impl RefUnwindSafe for NodeConnection
impl Send for NodeConnection
impl Sync for NodeConnection
impl Unpin for NodeConnection
impl UnwindSafe for NodeConnection
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