pub type PbSourceNode = SourceNode;
Expand description
Alias for SourceNode
.
Aliased Type§
struct PbSourceNode {
pub source_inner: Option<StreamSource>,
}
Fields§
§source_inner: Option<StreamSource>
The source node can contain either a stream source or nothing. So here we extract all
information about stream source to a message, and here it will be an Option
in Rust.