//! Parameters for a stream.
usesuper::{GvParameter, StreamParameter, Windows};/// Set of parameters associated with a stream.
pubstructModelStream<'a>{/// The length of parameter vector, which will be generated using the parameters in this struct.
pubvector_length:usize,
/// Stream parameter.
pubstream: StreamParameter,
/// Global variance parameter.
pubgv:Option<GvParameter>,
/// MLPG window coefficients.
pubwindows:&'a Windows,
}