pub struct CsrAddition<H> {
pub left: H,
pub right: H,
pub output: H,
pub left_entries: Vec<u32>,
pub right_entries: Vec<u32>,
}Fields§
§left: H§right: H§output: H§left_entries: Vec<u32>§right_entries: Vec<u32>Trait Implementations§
Source§impl<H: Clone> Clone for CsrAddition<H>
impl<H: Clone> Clone for CsrAddition<H>
Auto Trait Implementations§
impl<H> Freeze for CsrAddition<H>where
H: Freeze,
impl<H> RefUnwindSafe for CsrAddition<H>where
H: RefUnwindSafe,
impl<H> Send for CsrAddition<H>where
H: Send,
impl<H> Sync for CsrAddition<H>where
H: Sync,
impl<H> Unpin for CsrAddition<H>where
H: Unpin,
impl<H> UnsafeUnpin for CsrAddition<H>where
H: UnsafeUnpin,
impl<H> UnwindSafe for CsrAddition<H>where
H: 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