Struct cocaine::GraphNode[][src]

pub struct GraphNode {
    pub event: String,
    pub rx: Option<HashMap<u64, GraphNode>>,
}

Describes a protocol graph node.

Fields

Event name.

Optional downstream protocol description.

Trait Implementations

impl Clone for GraphNode
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for GraphNode
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for GraphNode

impl Sync for GraphNode