pub struct MicroKernelData<T> {
pub alpha: T,
pub beta: T,
pub conj_lhs: bool,
pub conj_rhs: bool,
pub k: usize,
pub dst_cs: isize,
pub lhs_cs: isize,
pub rhs_rs: isize,
pub rhs_cs: isize,
pub last_mask: *const (),
}
Fields§
§alpha: T
§beta: T
§conj_lhs: bool
§conj_rhs: bool
§k: usize
§dst_cs: isize
§lhs_cs: isize
§rhs_rs: isize
§rhs_cs: isize
§last_mask: *const ()
Trait Implementations§
Source§impl<T: Clone> Clone for MicroKernelData<T>
impl<T: Clone> Clone for MicroKernelData<T>
Source§fn clone(&self) -> MicroKernelData<T>
fn clone(&self) -> MicroKernelData<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl<T: Copy> Copy for MicroKernelData<T>
impl<T: Send> Send for MicroKernelData<T>
impl<T: Sync> Sync for MicroKernelData<T>
Auto Trait Implementations§
impl<T> Freeze for MicroKernelData<T>where
T: Freeze,
impl<T> RefUnwindSafe for MicroKernelData<T>where
T: RefUnwindSafe,
impl<T> Unpin for MicroKernelData<T>where
T: Unpin,
impl<T> UnwindSafe for MicroKernelData<T>where
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