pub struct ModelStream<'a> {
pub vector_length: usize,
pub stream: StreamParameter,
pub gv: Option<GvParameter>,
pub windows: &'a Windows,
}Expand description
Set of parameters associated with a stream.
Fields§
§vector_length: usizeThe length of parameter vector, which will be generated using the parameters in this struct.
stream: StreamParameterStream parameter.
gv: Option<GvParameter>Global variance parameter.
windows: &'a WindowsMLPG window coefficients.
Auto Trait Implementations§
impl<'a> Freeze for ModelStream<'a>
impl<'a> RefUnwindSafe for ModelStream<'a>
impl<'a> Send for ModelStream<'a>
impl<'a> Sync for ModelStream<'a>
impl<'a> Unpin for ModelStream<'a>
impl<'a> UnsafeUnpin for ModelStream<'a>
impl<'a> UnwindSafe for ModelStream<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more