pub type Parameters = Option<Vec<Value>>;
Expand description
A type representing the parameters of a stream.
If a stream is not dynamically created it defaults to None
.
If a stream is dynamically created but does not have parameters it defaults to Some(vec![])
Aliased Type§
pub enum Parameters {
None,
Some(Vec<Value>),
}