#[repr(C)]pub struct r_graph_node_t {
pub idx: c_uint,
pub data: *mut c_void,
pub out_nodes: *mut RList,
pub in_nodes: *mut RList,
pub all_neighbours: *mut RList,
pub free: RListFree,
}
Fields§
§idx: c_uint
§data: *mut c_void
§out_nodes: *mut RList
§in_nodes: *mut RList
§all_neighbours: *mut RList
§free: RListFree
Trait Implementations§
Source§impl Clone for r_graph_node_t
impl Clone for r_graph_node_t
Source§fn clone(&self) -> r_graph_node_t
fn clone(&self) -> r_graph_node_t
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 r_graph_node_t
impl Debug for r_graph_node_t
impl Copy for r_graph_node_t
Auto Trait Implementations§
impl Freeze for r_graph_node_t
impl RefUnwindSafe for r_graph_node_t
impl !Send for r_graph_node_t
impl !Sync for r_graph_node_t
impl Unpin for r_graph_node_t
impl UnwindSafe for r_graph_node_t
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