pub struct Product<S: Scalar, A: Signal<S>, B: Signal<S>> {
pub a: A,
pub b: B,
/* private fields */
}Expand description
Product of two signals: f(t) = a(t) * b(t)
Fields§
§a: A§b: BImplementations§
Trait Implementations§
Source§impl<S: Clone + Scalar, A: Clone + Signal<S>, B: Clone + Signal<S>> Clone for Product<S, A, B>
impl<S: Clone + Scalar, A: Clone + Signal<S>, B: Clone + Signal<S>> Clone for Product<S, A, B>
Auto Trait Implementations§
impl<S, A, B> Freeze for Product<S, A, B>
impl<S, A, B> RefUnwindSafe for Product<S, A, B>
impl<S, A, B> Send for Product<S, A, B>
impl<S, A, B> Sync for Product<S, A, B>
impl<S, A, B> Unpin for Product<S, A, B>
impl<S, A, B> UnsafeUnpin for Product<S, A, B>where
A: UnsafeUnpin,
B: UnsafeUnpin,
impl<S, A, B> UnwindSafe for Product<S, A, B>
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