pub struct GraphNode {
pub key: String,
pub origin: RecordOrigin,
pub buffer_type: String,
pub buffer_capacity: Option<usize>,
pub tap_count: usize,
pub has_outbound_link: bool,
}Expand description
Metadata for one node in the dependency graph.
Fields§
§key: StringRecord key (e.g. “temp.vienna”)
origin: RecordOriginHow this record gets its values
buffer_type: StringBuffer type (“spmc_ring”, “single_latest”, “mailbox”, “none”)
buffer_capacity: Option<usize>Buffer capacity (None for unbounded or non-ring buffers)
tap_count: usizeNumber of taps attached
has_outbound_link: boolWhether an outbound link is configured
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphNode
impl RefUnwindSafe for GraphNode
impl Send for GraphNode
impl Sync for GraphNode
impl Unpin for GraphNode
impl UnsafeUnpin for GraphNode
impl UnwindSafe for GraphNode
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