pub struct SisoAdapter<A, T: Transcendental> {
pub inner: A,
/* private fields */
}Expand description
Adapter: wrap a SISO Algorithm as a MultichannelAlgorithm.
Useful for mixed graphs where most nodes are SISO but some are multi-IO.
Fields§
§inner: AThe wrapped SISO algorithm.
Implementations§
Source§impl<A, T: Transcendental> SisoAdapter<A, T>where
A: Algorithm<T>,
impl<A, T: Transcendental> SisoAdapter<A, T>where
A: Algorithm<T>,
Trait Implementations§
Source§impl<A, T: Transcendental> MultichannelAlgorithm<T> for SisoAdapter<A, T>where
A: Algorithm<T>,
impl<A, T: Transcendental> MultichannelAlgorithm<T> for SisoAdapter<A, T>where
A: Algorithm<T>,
Auto Trait Implementations§
impl<A, T> Freeze for SisoAdapter<A, T>where
A: Freeze,
impl<A, T> RefUnwindSafe for SisoAdapter<A, T>where
A: RefUnwindSafe,
T: RefUnwindSafe,
impl<A, T> Send for SisoAdapter<A, T>where
A: Send,
impl<A, T> Sync for SisoAdapter<A, T>where
A: Sync,
impl<A, T> Unpin for SisoAdapter<A, T>
impl<A, T> UnsafeUnpin for SisoAdapter<A, T>where
A: UnsafeUnpin,
impl<A, T> UnwindSafe for SisoAdapter<A, T>where
A: UnwindSafe,
T: UnwindSafe,
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