pub struct GraphEdgeData {
pub from_port: u8,
pub to_port: u8,
pub dependency_type: GraphDependencyType,
}Fields§
§from_port: u8§to_port: u8§dependency_type: GraphDependencyTypeTrait Implementations§
Source§impl Clone for GraphEdgeData
impl Clone for GraphEdgeData
Source§fn clone(&self) -> GraphEdgeData
fn clone(&self) -> GraphEdgeData
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 GraphEdgeData
Source§impl Debug for GraphEdgeData
impl Debug for GraphEdgeData
Source§impl Default for GraphEdgeData
impl Default for GraphEdgeData
impl Eq for GraphEdgeData
Source§impl From<CUgraphEdgeData_st> for GraphEdgeData
impl From<CUgraphEdgeData_st> for GraphEdgeData
Source§fn from(value: cudaGraphEdgeData) -> Self
fn from(value: cudaGraphEdgeData) -> Self
Converts to this type from the input type.
Source§impl From<GraphEdgeData> for cudaGraphEdgeData
impl From<GraphEdgeData> for cudaGraphEdgeData
Source§fn from(value: GraphEdgeData) -> Self
fn from(value: GraphEdgeData) -> Self
Converts to this type from the input type.
Source§impl Hash for GraphEdgeData
impl Hash for GraphEdgeData
Source§impl PartialEq for GraphEdgeData
impl PartialEq for GraphEdgeData
Source§fn eq(&self, other: &GraphEdgeData) -> bool
fn eq(&self, other: &GraphEdgeData) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GraphEdgeData
Auto Trait Implementations§
impl Freeze for GraphEdgeData
impl RefUnwindSafe for GraphEdgeData
impl Send for GraphEdgeData
impl Sync for GraphEdgeData
impl Unpin for GraphEdgeData
impl UnsafeUnpin for GraphEdgeData
impl UnwindSafe for GraphEdgeData
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