pub struct SyevdInput<'a, TA, TW> {
pub a: &'a DeviceMemory<TA>,
pub eigenvalues: &'a DeviceMemory<TW>,
}Fields§
§a: &'a DeviceMemory<TA>§eigenvalues: &'a DeviceMemory<TW>Trait Implementations§
Source§impl<'a, TA: Clone, TW: Clone> Clone for SyevdInput<'a, TA, TW>
impl<'a, TA: Clone, TW: Clone> Clone for SyevdInput<'a, TA, TW>
Source§fn clone(&self) -> SyevdInput<'a, TA, TW>
fn clone(&self) -> SyevdInput<'a, TA, TW>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a, TA: Copy, TW: Copy> Copy for SyevdInput<'a, TA, TW>
Auto Trait Implementations§
impl<'a, TA, TW> Freeze for SyevdInput<'a, TA, TW>
impl<'a, TA, TW> RefUnwindSafe for SyevdInput<'a, TA, TW>where
TA: RefUnwindSafe,
TW: RefUnwindSafe,
impl<'a, TA, TW> Send for SyevdInput<'a, TA, TW>
impl<'a, TA, TW> Sync for SyevdInput<'a, TA, TW>
impl<'a, TA, TW> Unpin for SyevdInput<'a, TA, TW>
impl<'a, TA, TW> UnsafeUnpin for SyevdInput<'a, TA, TW>
impl<'a, TA, TW> UnwindSafe for SyevdInput<'a, TA, TW>where
TA: RefUnwindSafe,
TW: RefUnwindSafe,
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