Struct libspa_sys::spa_graph_node
source · #[repr(C)]pub struct spa_graph_node {
pub link: spa_list,
pub graph: *mut spa_graph,
pub ports: [spa_list; 2],
pub links: spa_list,
pub flags: u32,
pub state: *mut spa_graph_state,
pub graph_link: spa_graph_link,
pub subgraph: *mut spa_graph,
pub callbacks: spa_callbacks,
pub sched_link: spa_list,
}
Fields§
§link: spa_list
< link in graph nodes list
graph: *mut spa_graph
< owner graph
ports: [spa_list; 2]
< list of input and output ports
links: spa_list
< list of links to next nodes
flags: u32
< node flags
state: *mut spa_graph_state
< state of the node
graph_link: spa_graph_link
< link in graph
subgraph: *mut spa_graph
< subgraph or NULL
callbacks: spa_callbacks
§sched_link: spa_list
< link for scheduler
Trait Implementations§
source§impl Clone for spa_graph_node
impl Clone for spa_graph_node
source§fn clone(&self) -> spa_graph_node
fn clone(&self) -> spa_graph_node
Returns a copy 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 spa_graph_node
impl Debug for spa_graph_node
source§impl PartialEq for spa_graph_node
impl PartialEq for spa_graph_node
source§fn eq(&self, other: &spa_graph_node) -> bool
fn eq(&self, other: &spa_graph_node) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for spa_graph_node
impl Eq for spa_graph_node
impl StructuralPartialEq for spa_graph_node
Auto Trait Implementations§
impl RefUnwindSafe for spa_graph_node
impl !Send for spa_graph_node
impl !Sync for spa_graph_node
impl Unpin for spa_graph_node
impl UnwindSafe for spa_graph_node
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