pub struct EdgeEndpoints {
pub from: PortId,
pub to: PortId,
}Expand description
Edge endpoint pair (from/to ports).
Fields§
§from: PortId§to: PortIdImplementations§
Trait Implementations§
Source§impl Clone for EdgeEndpoints
impl Clone for EdgeEndpoints
Source§fn clone(&self) -> EdgeEndpoints
fn clone(&self) -> EdgeEndpoints
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 moreimpl Copy for EdgeEndpoints
Source§impl Debug for EdgeEndpoints
impl Debug for EdgeEndpoints
Source§impl<'de> Deserialize<'de> for EdgeEndpoints
impl<'de> Deserialize<'de> for EdgeEndpoints
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
impl Eq for EdgeEndpoints
Source§impl Hash for EdgeEndpoints
impl Hash for EdgeEndpoints
Source§impl PartialEq for EdgeEndpoints
impl PartialEq for EdgeEndpoints
Source§fn eq(&self, other: &EdgeEndpoints) -> bool
fn eq(&self, other: &EdgeEndpoints) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EdgeEndpoints
impl Serialize for EdgeEndpoints
impl StructuralPartialEq for EdgeEndpoints
Auto Trait Implementations§
impl Freeze for EdgeEndpoints
impl RefUnwindSafe for EdgeEndpoints
impl Send for EdgeEndpoints
impl Sync for EdgeEndpoints
impl Unpin for EdgeEndpoints
impl UnsafeUnpin for EdgeEndpoints
impl UnwindSafe for EdgeEndpoints
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