Type Alias Parameters

Source
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>),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(Vec<Value>)

Some value of type T.