pub enum HrmStream {
Low,
High,
}Expand description
Which of HRM-Text’s two residual streams a finished stack updates.
hrm-text.cpp:183-196: each H cycle runs l_cycles LOW stacks and
then one HIGH stack, every stack reading zH + zL and replacing one
of the two with its output.
Variants§
Low
A low-cycle pass: its output becomes zL.
High
The last pass of an H cycle: its output becomes zH.
Trait Implementations§
impl Copy for HrmStream
impl Eq for HrmStream
impl StructuralPartialEq for HrmStream
Auto Trait Implementations§
impl Freeze for HrmStream
impl RefUnwindSafe for HrmStream
impl Send for HrmStream
impl Sync for HrmStream
impl Unpin for HrmStream
impl UnsafeUnpin for HrmStream
impl UnwindSafe for HrmStream
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more