#[repr(C)]pub struct CUgraphEdgeData {
pub from_port: u8,
pub to_port: u8,
pub type_: u8,
pub reserved: [u8; 5],
}Expand description
CUgraphEdgeData — optional edge metadata (used by the v2 add-node /
add-dependencies APIs). 8 bytes.
Fields§
§from_port: u8§to_port: u8§type_: u8§reserved: [u8; 5]Trait Implementations§
Source§impl Clone for CUgraphEdgeData
impl Clone for CUgraphEdgeData
Source§fn clone(&self) -> CUgraphEdgeData
fn clone(&self) -> CUgraphEdgeData
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 moreSource§impl Debug for CUgraphEdgeData
impl Debug for CUgraphEdgeData
Source§impl Default for CUgraphEdgeData
impl Default for CUgraphEdgeData
Source§fn default() -> CUgraphEdgeData
fn default() -> CUgraphEdgeData
Returns the “default value” for a type. Read more
impl Copy for CUgraphEdgeData
Auto Trait Implementations§
impl Freeze for CUgraphEdgeData
impl RefUnwindSafe for CUgraphEdgeData
impl Send for CUgraphEdgeData
impl Sync for CUgraphEdgeData
impl Unpin for CUgraphEdgeData
impl UnsafeUnpin for CUgraphEdgeData
impl UnwindSafe for CUgraphEdgeData
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